-
-
Notifications
You must be signed in to change notification settings - Fork 20
43 lines (34 loc) · 904 Bytes
/
test.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
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [
# From https://github.com/nodejs/Release
'12.x', # EoL 2022-04-30
'14.x', # EoL 2023-04-30
'16.x', # EoL 2023-09-11
'18.x', # EoL 2025-04-30
'latest', # EoL 2026-04-30
]
steps:
- uses: actions/checkout@v3
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Check TypeScript
run: npx tsc
- name: Run tests
run: npm run test
env:
CI: true
- name: Run linters
run: npm run lint
- name: Run NPM package lints
run: npm run lint:package