Skip to content

Commit

Permalink
used piped commands for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak committed Jun 19, 2024
1 parent 46ce450 commit b6919bd
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,38 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/crdt
- run: yarn install --frozen-lockfile
- run: yarn test
- shell: bash
run: |
cd packages/crdt
yarn install --frozen-lockfile
yarn test
test-network:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/network
- run: yarn install --frozen-lockfile
- run: yarn test
- shell: bash
run: |
cd packages/network
yarn install --frozen-lockfile
yarn test
test-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/node
- run: yarn install --frozen-lockfile
- run: yarn test
- shell: bash
run: |
cd packages/node
yarn install --frozen-lockfile
yarn test
test-object:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/object
- run: yarn install --frozen-lockfile
- run: yarn test
- shell: bash
run: |
cd packages/object
yarn install --frozen-lockfile
yarn test

0 comments on commit b6919bd

Please sign in to comment.