Example for delegation with multisig #475
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: Run Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'development' | |
pull_request: | |
branches: | |
- 'main' | |
- 'development' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build, lint, and test on Node 18.12.1 and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18.12.1' | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm cache clean --force | |
npm set registry https://registry.npmjs.org/ | |
npm ci | |
- name: Check formatting | |
run: npm run pretty:check | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm test -- --coverage=true | |
- name: Build | |
run: npm run build | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test: | |
name: Run integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18.12.1' | |
cache: 'npm' | |
- name: install deps | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Start dependencies | |
run: docker compose up deps --pull always | |
- name: Run integration test | |
run: npm run test:integration | |
- name: Print logs | |
run: docker compose logs | |
if: always() | |