-
Notifications
You must be signed in to change notification settings - Fork 20
41 lines (35 loc) · 843 Bytes
/
test.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
41
name: Build Test
on:
push:
tags-ignore:
- 'v*.*.*'
branches:
- '*'
jobs:
build-webos:
name: Build WebOS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
curl https://mateussouzaweb.github.io/compactor/install.sh | bash
npm install
npm install --global rollup
- name: Build package
run: |
npm run build
npm run app-package
npm run app-manifest
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: webos-snapshot
path: |
bin/*.ipk
bin/webosbrew.manifest.json