Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/tacd-webui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: 20.17.0
- run: npx prettier@=3.3.3 --check .

license:
Expand All @@ -43,13 +43,19 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: 20.17.0
- name: npx license-checker
run: >
npx license-checker --summary --excludePrivatePackages --onlyAllow
"0BSD;Apache-2.0;BSD-2-Clause;BSD-3-Clause;CC-BY-4.0;CC0-1.0;EPL-1.0;ISC;MIT;MPL-2.0;Python-2.0;Unlicense;WTFPL"

build:
strategy:
fail-fast: false # Run against all versions even if one fails
matrix:
version:
- "20.12.2" # Yocto scarthgap
- "20.17.0" # Yocto styhead
name: npm run build
runs-on: ubuntu-latest
defaults:
Expand All @@ -59,7 +65,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm run build

Expand All @@ -73,6 +79,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: 20.17.0
- run: npm ci
- run: npm run test
Loading