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 3a1b76e commit 1e6f2cdCopy full SHA for 1e6f2cd
.github/workflows/versions.yml
@@ -102,6 +102,25 @@ jobs:
102
- name: Verify node
103
run: __tests__/verify-node.sh 14
104
105
+ version-file-volta:
106
+ runs-on: ${{ matrix.os }}
107
+ strategy:
108
+ fail-fast: false
109
+ matrix:
110
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
111
+ steps:
112
+ - uses: actions/checkout@v3
113
+ - name: Remove engines from package.json
114
+ shell: bash
115
+ run: |
116
+ jq 'del(.engines)' ./__tests__/data/package.json | sponge ./__tests__/data/package.json
117
+ - name: Setup node from node version file
118
+ uses: ./
119
+ with:
120
+ node-version-file: '__tests__/data/package.json'
121
+ - name: Verify node
122
+ run: __tests__/verify-node.sh 14
123
+
124
node-dist:
125
runs-on: ${{ matrix.os }}
126
strategy:
0 commit comments