Sainan 005350bde0
All checks were successful
Build Docker image / docker (push) Successful in 54s
Build / build (push) Successful in 1m25s
ci: remove node.js version matrix (#1519)
We only check if the TypeScript successfully compiles & lints, which isn't really dependent on Node.js version.

Reviewed-on: #1519
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
2025-04-09 06:52:30 -07:00

17 lines
424 B
YAML

name: Build
on:
push: {}
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.2
- run: npm ci
- run: cp config.json.example config.json
- run: npm run verify
- run: npm run lint