forked from atom/superstring
-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (49 loc) · 1.15 KB
/
ci.yml
File metadata and controls
55 lines (49 loc) · 1.15 KB
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
46
47
48
49
50
51
52
53
54
55
name: ci
on:
pull_request:
push:
branches: [master]
jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-2019
node_version:
- 12
- 14
- 16
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Cache
uses: actions/cache@v3
with:
path: |
'node_modules'
key: ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('package.json') }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
architecture: x64
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
vcvarsall: true
architecture: x64
python: true
- name: Install dependencies
run: npm install
- name: Lint
run: npm run standard
- name: Run tests
run: |
npm run test:node
npm run test:native