Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add node:16 to the test matrix #2244

Merged
merged 10 commits into from Jun 8, 2021
2 changes: 1 addition & 1 deletion .github/workflows/peer-api.yaml
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install lerna
run: npm install -g lerna

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
container: ["node:8", "node:10", "node:12", "node:14"]
container: ["node:8", "node:10", "node:12", "node:14", "node:16"]
runs-on: ubuntu-latest
container:
image: ${{ matrix.container }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
run: npm run test
- name: Report Coverage
run: npm run codecov
if: ${{ matrix.container }} == 'node:12'
if: ${{ matrix.container }} == 'node:14'
browser-tests:
runs-on: ubuntu-latest
container:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/w3c-integration-test.yml
Expand Up @@ -39,9 +39,9 @@ jobs:
run: |
npm ci --ignore-scripts
npx lerna bootstrap --scope=propagation-validation-server --include-dependencies

- name: Build 🔧
run: npm run compile
run: npm run compile
working-directory: ./integration-tests/propagation-validation-server

- name: Run W3C Test harness
Expand Down