Skip to content

Commit 14afe1d

Browse files
committed
fix: update stardust github workflow
1 parent 21f4152 commit 14afe1d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build-stardust.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Client Build Stardust
22

33
on:
44
push:
5-
branches: [feat/stardust]
5+
branches: [develop]
66
paths:
77
- "src/**"
88
- ".github/workflows/build-stardust.yml"
99
pull_request:
10-
branches: [feat/stardust]
10+
branches: [develop]
1111
paths:
1212
- "src/**"
1313
- ".github/workflows/build-stardust.yml"
@@ -18,10 +18,12 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v2
21-
- name: Use Node.js 14.x
22-
uses: actions/setup-node@v1
21+
- name: Use Node.js 16.16
22+
uses: actions/setup-node@v2
2323
with:
24-
node-version: "14"
24+
node-version: "16.16"
25+
- name: npm 8.18
26+
run: npm install -g [email protected]
2527
- name: Client Build
2628
run: |
2729
npm install

0 commit comments

Comments
 (0)