mirror of
https://github.com/typicode/json-server.git
synced 2026-03-28 15:57:28 +00:00
19 lines
399 B
YAML
19 lines
399 B
YAML
name: Node.js CI
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: "22.x"
|
|
cache: "pnpm"
|
|
- run: pnpm install
|
|
- run: pnpm run lint
|
|
- run: pnpm run typecheck
|
|
- run: pnpm test
|