Skip to content

Merge pull request #2 from exsjabe/enum #11

Merge pull request #2 from exsjabe/enum

Merge pull request #2 from exsjabe/enum #11

Workflow file for this run

name: 'Check format, lint, typecheck and run tests'
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm format:check
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm test:ci