-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (29 loc) · 729 Bytes
/
ci.yml
File metadata and controls
37 lines (29 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
name: Syntax & dependency check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Syntax check — server
run: |
node --check server/server.js
node --check server/config.js
node --check server/db.js
node --check server/cleanup.js
- name: Syntax check — bin
run: node --check bin/instbyte.js
- name: Run tests
run: npm test