File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,25 @@ jobs:
102
102
- name : Verify node
103
103
run : __tests__/verify-node.sh 14
104
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
+
105
124
node-dist :
106
125
runs-on : ${{ matrix.os }}
107
126
strategy :
You can’t perform that action at this time.
0 commit comments