-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (37 loc) · 814 Bytes
/
Copy pathbuild.yml
File metadata and controls
42 lines (37 loc) · 814 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: Build
on:
push:
branches:
- full-recode
- main
pull_request:
branches:
- full-recode
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system packages needed for headless gl
run: >-
sudo apt-get update &&
sudo apt-get install -y
build-essential
libgl1-mesa-dri
libglapi-mesa
libglew-dev
libglu1-mesa-dev
libosmesa6
libxi-dev
mesa-utils
pkg-config
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install project dependencies
run: npm ci
- name: Build the project
run: npm run build