Skip to content

add pr checks and release ci workflows #1

add pr checks and release ci workflows

add pr checks and release ci workflows #1

Workflow file for this run

name: PR Checks
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run typecheck
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test