Skip to content

Cloning

Cloning #1267

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