fix(ic-asset-certification): fix range response certification #586
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: e2e_tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
SCCACHE_GHA_ENABLED: 'true' | |
RUSTC_WRAPPER: 'sccache' | |
jobs: | |
e2e_tests: | |
name: e2e_tests:required | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PNPM | |
uses: dfinity/ci-tools/actions/setup-pnpm@main | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@v0.0.3 | |
- name: Setup e2e Deps Cache | |
uses: actions/cache@v3 | |
with: | |
path: tmp/ | |
key: ${{ runner.os }}-tmp | |
- name: Setup wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: e2e tests | |
run: ./scripts/e2e.sh --use-latest-dfx |