Skip to content

Commit 7daaaa4

Browse files
committed
See what happens if we add non-required type checking
1 parent ef60977 commit 7daaaa4

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

.github/workflows/validate.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cache: npm
3636
- name: Install dependencies
3737
run: npm ci
38-
- name: Validate
38+
- name: Lint
3939
run: npm run lint
4040

4141
format:
@@ -52,5 +52,23 @@ jobs:
5252
cache: npm
5353
- name: Install dependencies
5454
run: npm ci
55-
- name: Validate
55+
- name: Check format
5656
run: npm run check-format
57+
58+
check-types-this-is-only-warning-fixing-is-not-required:
59+
runs-on: ubuntu-latest
60+
steps:
61+
- name: Checkout
62+
uses: actions/checkout@v4
63+
with:
64+
persist-credentials: false
65+
- name: Install Node.js
66+
uses: actions/setup-node@v4
67+
with:
68+
node-version: 22
69+
cache: npm
70+
- name: Install dependencies
71+
run: npm ci
72+
- name: Check types (This is only warning, fixing is not required)
73+
continue-on-error: true
74+
run: npm run check-types

0 commit comments

Comments
 (0)