Skip to content

Commit 4631fde

Browse files
committed
Include node dependencies in build workflow
1 parent 8404b22 commit 4631fde

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ 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 --omit=dev
1721
- name: build
1822
run: |
1923
./build.sh
2024
- uses: ncipollo/release-action@v1
2125
with:
2226
artifacts: "release.zip"
23-
token: ${{ secrets.GITHUB_TOKEN }}
27+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)