-
Notifications
You must be signed in to change notification settings - Fork 38
48 lines (43 loc) · 1.06 KB
/
ci.yml
File metadata and controls
48 lines (43 loc) · 1.06 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
name: CI
on: [push, pull_request]
permissions: {}
jobs:
windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm test
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 22
- run: sudo apt install -y libx11-dev libxkbfile-dev
- run: npm ci
- run: npm test
macos:
name: macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 22
# https://github.com/nodejs/node-gyp/issues/2869
- run: python3 -m venv .venv && source .venv/bin/activate && python3 -m pip install setuptools
- run: npm ci
- run: npm test