-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (26 loc) · 675 Bytes
/
ci.yml
File metadata and controls
33 lines (26 loc) · 675 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
name: CI
on:
push:
branches: '*'
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
with:
submodules: 'recursive'
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24.x'
- name: Install Dependencies
run: npm install
- name: Install libffi build tools
run: brew install autoconf automake libtool texinfo
- name: Build libffi
run: npm run build-libffi
- name: Build metadata generator
run: npm run build-metagen
- name: Build NativeScript
run: npm run build --quickjs