Skip to content

Virtual opcodes

Virtual opcodes #1288

Workflow file for this run

name: "Tests: Formatting, Typing, and Unit"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20.x
cache: "npm"
- run: npm ci
- run: npm run test:formatting
- run: npm run test:typecheck
- run: npm run test:lint
- run: npm run test:build
- run: npm run test:jest
- run: npm run cover-all
- uses: actions/checkout@v2
with:
ref: main
path: main-branch
- run: |
cd main-branch
npm run cover-all
- run: npm run cover-all:compare -- --base main-branch/cover-all.json --compare cover-all.json