-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (37 loc) · 790 Bytes
/
node.yml
File metadata and controls
42 lines (37 loc) · 790 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
name: node-gyp integration
on:
push:
branches: dectalk-develop
paths:
- src/**
- include/**
- platforms/node/**
- .github/workflows/node.yml
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
[
macos-26,
macos-26-intel,
ubuntu-24.04,
ubuntu-24.04-arm,
windows-latest,
windows-11-arm,
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install dependencies
run: |
cd platforms/node
node copyFiles.js
npm ci