Files
json-server/.github/workflows/node.js.yml
2026-01-18 00:14:56 +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