Files
json-server/.github/workflows/node.js.yml
typicode 193b12960c use TS natively and switch to pnpm (#1672)
* use TS natively

* use pnpm
2026-01-15 00:04:05 +01:00

18 lines
372 B
YAML

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- run: pnpm install
- run: pnpm run typecheck
- run: pnpm test