Skip to content

Commit 5cf9477

Browse files
committed
chore: skip ESLint on Node 8 (not supported)
1 parent 48b16d9 commit 5cf9477

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ jobs:
3131
with:
3232
useLockFile: false
3333

34-
- name: ▶️ Run validate script
34+
- if: ${{ matrix.os == 8 }}
35+
name: ▶️ Run validate script
36+
run: npm run clean && npm-run-all test build
37+
38+
- if: ${{ matrix.os != 8 }}
39+
name: ▶️ Run validate script
3540
run: npm run validate
3641

3742
- name: ⬆️ Upload coverage report

0 commit comments

Comments
 (0)