Skip to content

Commit 4b77a29

Browse files
committed
refactor: TesGithub-Cii check (required check)
1 parent 93da51e commit 4b77a29

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/github-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
- name: Install dependencies
2828
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
2929

30+
# Intentionally fail the job (prevents uploads below)
31+
- name: Fail intentionally
32+
run: |
33+
echo "Intentionally failing coverage job"
34+
exit 1
35+
3036
- name: Perform ESLint check
3137
run: npm run lint
3238

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ jobs:
3232
- name: Install dependencies
3333
run: npm ci
3434

35-
- name: Run unit tests
36-
run: npm run unit
35+
# Skip tests
36+
# - name: Run unit tests
37+
# run: npm run unit

0 commit comments

Comments
 (0)