Install addons in CI

This commit is contained in:
Daniel Imms
2023-08-22 06:11:54 -07:00
parent ee33765932
commit eae79e93f3
2 changed files with 12 additions and 5 deletions
+10 -4
View File
@@ -63,7 +63,9 @@ jobs:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
run: |
yarn --frozen-lockfile
yarn install-addons
- name: Lint code
run: yarn lint
- name: Lint API
@@ -95,7 +97,9 @@ jobs:
node-version: ${{ matrix.node-version }}.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
run: |
yarn --frozen-lockfile
yarn install-addons
- name: Unit tests
run: yarn test-unit --forbid-only
@@ -103,7 +107,7 @@ jobs:
needs: build
strategy:
matrix:
node-version: [18]
node-version: [18] # just one as integration tests are about testing in browser
runs-on: [ubuntu, windows] # macos is flaky
browser: [chromium, firefox]
runs-on: ${{ matrix.runs-on }}-latest
@@ -126,7 +130,9 @@ jobs:
node-version: ${{ matrix.node-version }}.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
run: |
yarn --frozen-lockfile
yarn install-addons
- name: Install playwright
run: npx playwright install
- name: Integration tests (${{ matrix.browser }})
+2 -1
View File
@@ -41,7 +41,8 @@
"test-unit-coverage": "node ./bin/test.js --coverage",
"test-unit-dev": "cross-env NODE_PATH='./out' mocha",
"build": "tsc -b ./tsconfig.all.json",
"presetup": "node ./bin/install-addons.js",
"install-addons": "node ./bin/install-addons.js",
"presetup": "npm run install-addons",
"setup": "npm run build",
"postsetup": "npm run inwasm",
"prepublishOnly": "npm run package",