Skip to content

ci: check on all OS #322

ci: check on all OS

ci: check on all OS #322

Workflow file for this run

name: ci
on:
push:
branches: [master, beta]
pull_request:
branches: [master, beta]
jobs:
build_and_lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run lint:commit -- --to "${{ github.sha }}"
- run: npm run lint:typescript
- run: npm run lint:eslint
- run: npm run lint:prettier
- run: npm run test
- run: npm run start