feat(github/workflows/deploy-api.yml): Use actions/setup-node@v3 with node-version 20

Change node version to 20
Update cache to 'pnpm'
Remove frozen lockfile option
This commit is contained in:
taskylizard 2024-07-09 10:23:50 +00:00
parent 5135817dd9
commit 2a5f85c7ba
No known key found for this signature in database
GPG Key ID: 1820131ED1A24120

View File

@ -17,10 +17,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'pnpm'
- run: pnpm install --no-frozen-lockfile
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm api:build