Audit final revision compared to initial audit (based on branch is v0.1.5, commit f1dfefc71c3ace567a5b79e98100ee17d9cfcc5d) #188
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: integration test | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: get cached just | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/bin/just | |
key: ${{ runner.os }}-just-${{ env.JUST_VERSION }} | |
- name: install just | |
run: cargo install just || true | |
- name: start local chains | |
run: just start-local-chains > /dev/null | |
- name: integration test | |
run: just integration-test | |
- name: stop local chains | |
run: just stop-local-chains |