mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 14:40:42 +01:00
Git Workflow Fix
This commit is contained in:
parent
6b61e0852f
commit
ca28744c33
2 changed files with 4 additions and 4 deletions
6
.github/workflows/checks.yml
vendored
6
.github/workflows/checks.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install NPM dependencies
|
- name: Install NPM dependencies
|
||||||
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
||||||
run: npm ci
|
run: npm ci --legacy-peer-deps
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
name: Lint
|
name: Lint
|
||||||
|
@ -57,7 +57,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install NPM dependencies
|
- name: Install NPM dependencies
|
||||||
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
||||||
run: npm ci
|
run: npm ci --legacy-peer-deps
|
||||||
|
|
||||||
- name: Lint Scripts
|
- name: Lint Scripts
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
@ -89,7 +89,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install NPM dependencies
|
- name: Install NPM dependencies
|
||||||
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
||||||
run: npm ci
|
run: npm ci --legacy-peer-deps
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: npm run test
|
run: npm run test
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install NPM dependencies
|
- name: Install NPM dependencies
|
||||||
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
if: steps.cache-npm-packages.outputs.cache-hit != 'true'
|
||||||
run: npm ci
|
run: npm ci --legacy-peer-deps
|
||||||
|
|
||||||
- name: Cache build frontend
|
- name: Cache build frontend
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
|
Loading…
Add table
Reference in a new issue