Skip to content

Commit 4822a0a

Browse files
committed
build(workflow): set node 16 in github action
1 parent bc3b57c commit 4822a0a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/vercel-deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,15 @@ jobs:
2626
deploy:
2727
runs-on: ubuntu-latest
2828
needs: test
29+
strategy:
30+
matrix:
31+
node-version: [16.x]
2932
steps:
3033
- uses: actions/checkout@v1
34+
- name: Use Node.js ${{ matrix.node-version }}
35+
uses: actions/setup-node@v1
36+
with:
37+
node-version: ${{ matrix.node-version }}
3138
- name: build
3239
run: |
3340
npm ci

0 commit comments

Comments
 (0)