Skip to content

Commit

Permalink
ci: fix node version
Browse files Browse the repository at this point in the history
  • Loading branch information
luckfunc committed Aug 11, 2024
1 parent e66d2ef commit 4a21a0f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ jobs:
- name: install Node.js
uses: actions/[email protected]
with:
node-version: '18.X'
node-version: '16.X'

- name: Setup pnpm
# - name: Setup pnpm
# You may pin to the exact commit or the version.
# uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598
uses: pnpm/[email protected]
with:
# uses: pnpm/[email protected]
# with:
# Version of pnpm to install
version: '8.X'
# version: '8.X'

- name: install deps
run: pnpm i
run: npm i
- name: build app
run: pnpm run build
run: npm run build

- name: Deploy to the server.
uses: cross-the-world/scp-pipeline@master
Expand Down

0 comments on commit 4a21a0f

Please sign in to comment.