Skip to content

Commit 54b4a0f

Browse files
committed
Include node dependencies in build workflow
1 parent 8404b22 commit 54b4a0f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ jobs:
1414
- uses: actions/checkout@master
1515
- name: Composer
1616
uses: php-actions/composer@v6
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 23
20+
- run: npm ci
21+
- run: npm run build
1722
- name: build
1823
run: |
1924
./build.sh
2025
- uses: ncipollo/release-action@v1
2126
with:
2227
artifacts: "release.zip"
23-
token: ${{ secrets.GITHUB_TOKEN }}
28+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)