Skip to content

Commit

Permalink
use shell commands piped
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak committed Jun 19, 2024
1 parent 818fec1 commit 46ce450
Showing 1 changed file with 25 additions and 15 deletions.
40 changes: 25 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,48 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/crdt
- run: yarn install --frozen-lockfile
- run: yarn build
- shell: bash
run: |
cd packages/crdt
yarn install --frozen-lockfile
yarn build
build-network:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/network
- run: yarn install --frozen-lockfile
- run: yarn build
- shell: bash
run: |
cd packages/network
yarn install --frozen-lockfile
yarn build
build-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/node
- run: yarn install --frozen-lockfile
- run: yarn build
- shell: bash
run: |
cd packages/node
yarn install --frozen-lockfile
yarn build
build-object:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd packages/object
- run: yarn install --frozen-lockfile
- run: yarn build
- shell: bash
run: |
cd packages/object
yarn install --frozen-lockfile
yarn build
build-example-canvas:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd examples/canvas
- run: yarn install --frozen-lockfile
- run: yarn build
- shell: bash
run: |
cd examples/canvas
yarn install --frozen-lockfile
yarn build

0 comments on commit 46ce450

Please sign in to comment.