-
Notifications
You must be signed in to change notification settings - Fork 211
45 lines (33 loc) · 910 Bytes
/
test.yaml
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
45
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: nvs
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
fail-fast: false # Don't cancel other jobs when one job fails
steps:
- uses: actions/checkout@v3
- name: Install zsh
run: sudo apt install zsh
if: ${{ runner.os == 'Linux' }}
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install packages
run: npm install --no-optional
- name: Run tests
run: npm run test -- --tap
- name: Check style
run: npm run lint
if: ${{ always() }}
- name: Check types
run: npm run ts-check
if: ${{ always() }}