Skip to content

Commit e8fa274

Browse files
committed
Issue #453: Implement CSS/JS builder
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent e07caa5 commit e8fa274

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/build-assets.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build Assets
2+
3+
on: push
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
build:
10+
name: Build assets (Node ${{ matrix.node-version }})
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: ["20", "22", "24", "26"]
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v6
20+
21+
- name: Set up Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v6
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
26+
- name: Install dependencies
27+
run: npm install
28+
29+
- name: Build assets
30+
run: npm run build
31+
32+
- name: Audit dependencies
33+
run: npm audit --audit-level=critical

0 commit comments

Comments
 (0)