-
Notifications
You must be signed in to change notification settings - Fork 33
38 lines (36 loc) · 892 Bytes
/
nodejs.yml
File metadata and controls
38 lines (36 loc) · 892 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
38
name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
nodejs:
# Documentation: https://github.com/zakodium/workflows#nodejs-ci
uses: zakodium/workflows/.github/workflows/nodejs.yml@nodejs-v1
with:
node-version: 24.x
node-version-matrix: '[24]'
lint-check-types: true
upload-coverage: false
knip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: package.json
- run: npm ci
- name: Run Knip
run: node --run knip
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: package.json
- name: Install dependencies
run: npm ci
- name: Run Stylelint
run: node --run stylelint