Skip to content

Commit d66cce3

Browse files
CLOUDP-286235: test should fail
1 parent e642b88 commit d66cce3

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/code-health-tools.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,22 @@ jobs:
5555
sparse-checkout: |
5656
.github
5757
tools
58+
- name: Setup Node
59+
uses: actions/setup-node@v4
60+
with:
61+
node-version: '20.x'
62+
- name: Install npm dependencies
63+
uses: nick-fields/retry@v3
64+
with:
65+
timeout_minutes: 10
66+
max_attempts: 3
67+
command: npm install
68+
- name: Run Prettier
69+
run: |
70+
npm run format-check
71+
- name: Run ESLint on JS files
72+
run: |
73+
npm run lint-js
5874
- name: Install Go
5975
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
6076
with:
@@ -79,22 +95,6 @@ jobs:
7995
echo "::add-matcher::.github/actionlint-matcher.json"
8096
${{ steps.get_actionlint.outputs.executable }} -color
8197
shell: bash
82-
- name: Setup Node
83-
uses: actions/setup-node@v4
84-
with:
85-
node-version: '20.x'
86-
- name: Install npm dependencies
87-
uses: nick-fields/retry@v3
88-
with:
89-
timeout_minutes: 10
90-
max_attempts: 3
91-
command: npm install
92-
- name: Run Prettier
93-
run: |
94-
npm run format-check
95-
- name: Run ESLint on JS files
96-
run: |
97-
npm run lint-js
9898

9999
e2e-tests:
100100
needs: build

0 commit comments

Comments
 (0)