We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a832a3 commit 0594211Copy full SHA for 0594211
1 file changed
.github/workflows/deploy.yml
@@ -36,21 +36,18 @@ jobs:
36
needs: changed-files
37
runs-on: ubuntu-22.04
38
if: needs.changed-files.outputs.files != 'true'
39
- strategy:
40
- matrix:
41
- node-version: [20.17.0]
42
steps:
43
- name: Checkout repo
44
uses: actions/checkout@v4
45
46
- name: Set up Pnpm
47
uses: pnpm/action-setup@v4
48
49
- - name: Set up Node.js ${{ matrix.node-version }}
+ - name: Set up Node.js
50
uses: actions/setup-node@v4
51
with:
52
- node-version: ${{ matrix.node-version }}
53
- cache: "pnpm"
+ node-version-file: .nvmrc
+ cache: pnpm
54
55
- name: Install dependencies
56
run: pnpm install --frozen-lockfile
0 commit comments