We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ed528 commit 390ccd9Copy full SHA for 390ccd9
.github/workflows/main_ourumbraco.yml
@@ -31,12 +31,15 @@ jobs:
31
uses: actions/setup-node@v3
32
with:
33
node-version: 22
34
- - name: Install gulp
35
- working-directory: ./OurUmbraco.Client
36
- run: npm install gulp
37
- - name: Install helpers
+ - name: Install npm 8 instead of 10 so we can set the Python version
+ working-directory: ./OurUmbraco.Client
+ run: npm install npm@^8
+ - name: Set npm Python version to 3
38
working-directory: ./OurUmbraco.Client
39
- run: npm install --save-dev jshint gulp-jshint
+ run: npm config set python python3
40
+ - name: Install npm prerequisites node-gyp
41
42
+ run: npm install node-gyp gulp jshint gulp-jshint
43
- name: npm install
44
45
run: npm install
0 commit comments