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 d851234 commit 568716bCopy full SHA for 568716b
.github/workflows/code-qa.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Checkout repository
20
uses: actions/checkout@v4
21
- name: Use Node.js ${{ matrix.node-version }}
22
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v3
23
with:
24
node-version: ${{ matrix.node-version }}
25
- name: Cache Node.js modules
@@ -30,13 +30,11 @@ jobs:
30
restore-keys: |
31
${{ runner.os }}-node-
32
- name: Check installs
33
- run: npm ci
+ run: npm ci --legacy-peer-deps
34
- name: Quality check - prettier
35
run: npm run prettier:check
36
- name: Quality check - eslint
37
run: npm run eslint:check
38
- - name: Quality check - lint
39
- run: npm run lint
40
- name: Quality check - cypress
41
run: npm run e2e:headless
42
- name: Build check
0 commit comments