Skip to content

Commit

Permalink
Build inwasm in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Aug 19, 2023
1 parent ace0243 commit 394409b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn setup
run: |
yarn setup
yarn inwasm
- name: Zip artifacts
run: |
zip -r compressed-build \
Expand Down Expand Up @@ -89,13 +91,15 @@ jobs:
run: 7z x compressed-build.zip -aoa -o${{ github.workspace }}
- name: Print directory structure
run: ls -R
- name: Use Node.js 18.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build inwasm
run: yarn inwasm
- name: Unit tests
run: yarn test-unit --forbid-only

Expand Down

0 comments on commit 394409b

Please sign in to comment.