forked from layer5io/sistent
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 947 Bytes
/
node-checks.yml
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
39
40
41
42
43
44
name: Node version and Lint Check
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- '*'
paths-ignore:
- 'system/**/*'
- '.github/**/*'
- '*.md'
jobs:
compatibility-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Lint Check
run: npm run lint
- name: Prettier Check
run: npm run format:check
- name: Build Project
run: npm run build
- name: Run Tests
run: npm run test
- name: Log Node.js Version
run: echo "Tested on Node.js version ${{ matrix.node-version }}"