Fix: add response data verification with alternative list when data i… #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |