Skip to content

Upgrades

Upgrades #1184

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # manually
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: latest
run_install: false
- name: Set up Node
uses: actions/[email protected]
with:
node-version: node
cache: 'pnpm'
- name: Install dependencies
run: pnpm install -r --ignore-scripts
- name: Check formatting (Prettier)
run: pnpm exec prettier -c .
- name: Run unit tests
run: pnpm test:unit
- name: Run type checks (TypeScript)
run: pnpm tsc
- name: Run linter (ESLint)
run: pnpm lint