chore: updating tests for node 20 compatibility #977
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End to End | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
ghc: ['8.8.4'] | |
spec: | |
- '0.16.1' | |
node: | |
- 16 | |
- 18 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install -g npm@9 | |
- run: npm install | |
- run: pushd e2e/browser && npm install && popd | |
- run: pushd e2e/node && npm install && popd | |
# build monorepo incl. each subpackage | |
- run: npm run build --workspaces --if-present | |
- run: echo y | sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)" | |
- name: running dfx | |
id: dfx | |
run: | | |
dfx start --background | |
- run: npm run e2e --workspaces --if-present | |
env: | |
CI: true | |
REPLICA_PORT: 4943 | |
aggregate: | |
name: e2e:required | |
if: ${{ always() }} | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: check e2e test result | |
if: ${{ needs.test.result != 'success' }} | |
run: exit 1 |