We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa9488e commit 8b531a0Copy full SHA for 8b531a0
.github/workflows/ci.yml
@@ -6,11 +6,12 @@ jobs:
6
runs-on: ubuntu-latest
7
steps:
8
- name: Checkout
9
- uses: actions/checkout@v2
+ uses: actions/checkout@v5
10
- name: Use Node.js
11
- uses: actions/setup-node@v2
+ uses: volta-cli/action@v4
12
with:
13
- node-version: 20.x
14
- cache: yarn
+ node-version: 18
+ - name: Install pnpm
15
+ run: volta install pnpm@10
16
- name: Install Dependencies
- run: yarn install
17
+ run: pnpm install
package.json
@@ -25,5 +25,8 @@
25
},
26
"ember-addon": {
27
"defaultBlueprint": "aws-deploy-config"
28
+ },
29
+ "volta": {
30
+ "node": "20.18.2"
31
}
32
0 commit comments