-
Notifications
You must be signed in to change notification settings - Fork 43
96 lines (77 loc) · 2.08 KB
/
Test.yml
File metadata and controls
96 lines (77 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-linux-macos:
name: Test on ${{ matrix.os }} with Node ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: ["lts/*"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install build tools (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Install dependencies
run: |
npm install
- name: Display versions
run: |
node --version
npm --version
python --version || python3 --version
- name: Run tests
run: npm test
test-windows:
name: Test on Windows with Node ${{ matrix.node-version }} (${{ matrix.arch }})
runs-on: windows-latest
strategy:
matrix:
node-version: ["lts/*"]
arch: ["x64"]
include:
- node-version: "22"
arch: "x86"
steps:
- name: Configure git line endings
run: git config --global core.autocrlf input
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.arch }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: npm install
- name: Display versions
run: |
node --version
npm --version
python --version
- name: Run tests
run: npm test