forked from atom/git-utils
-
-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (42 loc) · 938 Bytes
/
ci.yml
File metadata and controls
44 lines (42 loc) · 938 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
39
40
41
42
43
44
name: CI
on:
push:
pull_request:
jobs:
Build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-24.04-arm
env:
CC: clang
CXX: clang++
npm_config_clang: 1
- os: ubuntu-latest
env:
CC: clang
CXX: clang++
npm_config_clang: 1
- os: windows-latest
env: {}
- os: macos-latest
env:
CC: clang
CXX: clang++
npm_config_clang: 1
env: ${{ matrix.env }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
name: Install Node
with:
node-version: 20
- name: Install module
run: |
npm run prepare
npm install
- name: Run tests
run: npm test