add manuell install von node-gyp for all frontend steps

This commit is contained in:
einhorn_b 2023-10-06 08:17:29 +02:00
parent 1cb34fb4c0
commit de69dd97d2

View File

@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v3
- name: Frontend | Lint
run: cd frontend && yarn && yarn run lint
run: cd frontend && yarn global add node-gyp && yarn && yarn run lint
stylelint:
if: needs.files-changed.outputs.frontend == 'true'
@ -69,7 +69,7 @@ jobs:
uses: actions/checkout@v3
- name: Frontend | Stylelint
run: cd frontend && yarn && yarn run stylelint
run: cd frontend && yarn global add node-gyp && yarn && yarn run stylelint
locales:
if: needs.files-changed.outputs.frontend == 'true'
@ -81,4 +81,4 @@ jobs:
uses: actions/checkout@v3
- name: Frontend | Locales
run: cd frontend && yarn && yarn run locales
run: cd frontend && yarn global add node-gyp && yarn && yarn run locales