-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 917 Bytes
/
build.yml
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
name: Build
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 'lts/Iron'
cache: 'npm'
- uses: mymindstorm/setup-emsdk@v11
with:
version: 3.1.48
actions-cache-folder: 'emsdk-cache'
- run: cmake --version
- run: c++ -v
- run: em++ -v
- run: npm ci
- run: npm run build
- run: xvfb-run -a npm run test
- run: npm run package
- uses: actions/upload-artifact@v3
with:
name: sksl.vsix
path: sksl.vsix