Skip to content

Commit

Permalink
build(workflow): set node 16 in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1p committed Jul 9, 2023
1 parent bc3b57c commit 4822a0a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/vercel-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,15 @@ jobs:
deploy:
runs-on: ubuntu-latest
needs: test
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: build
run: |
npm ci
Expand Down

0 comments on commit 4822a0a

Please sign in to comment.