Skip to content

Commit aeaf996

Browse files
authored
Update webpack.yml
1 parent d323154 commit aeaf996

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/webpack.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,20 @@ jobs:
1515
node-version: [18.x, 20.x, 22.x]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- name: Checkout code
19+
uses: actions/checkout@v4
1920

2021
- name: Use Node.js ${{ matrix.node-version }}
2122
uses: actions/setup-node@v4
2223
with:
2324
node-version: ${{ matrix.node-version }}
2425

25-
- name: Build
26+
- name: Install dependencies
2627
run: |
27-
cd Build/Buildscripts
28-
./build-all.sh
28+
cd Build
29+
npm install
30+
31+
- name: Build project
32+
run: |
33+
chmod +x ./Buildscripts/build.sh
34+
./Buildscripts/build-all.sh

0 commit comments

Comments
 (0)