Skip to content

Commit e030558

Browse files
committed
add depedencies installation step in build workflow
1 parent 544c825 commit e030558

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v3
13+
- name: Install Node.js
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version-file: .nvmrc
17+
- name: Install dependencies
18+
run: npm ci
19+
- name: Build extension
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
run: npm run build:css
1323
- name: Xcode build
1424
uses: sersoft-gmbh/xcodebuild-action@v2
1525
with:

0 commit comments

Comments
 (0)