Skip to content

Commit c3386ce

Browse files
committed
Typecheck removed
1 parent 079ab65 commit c3386ce

File tree

2 files changed

+2
-38
lines changed

2 files changed

+2
-38
lines changed

.github/workflows/merge-main.yaml

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,6 @@ jobs:
2323
- name: Run ESLint
2424
run: npm run lint
2525

26-
typecheck:
27-
runs-on: ubuntu-latest
28-
29-
steps:
30-
- name: Checkout code
31-
uses: actions/[email protected]
32-
33-
- name: Set up Node.js
34-
uses: actions/[email protected]
35-
with:
36-
node-version: 20
37-
38-
- name: Install dependencies
39-
run: npm ci
40-
41-
- name: Run typecheck
42-
run: npm run typecheck
43-
4426
build:
4527
runs-on: ubuntu-latest
4628

@@ -60,9 +42,9 @@ jobs:
6042
run: npm run build
6143

6244
publish:
63-
needs: [linting, typecheck, build]
45+
needs: [linting, build]
6446
runs-on: ubuntu-latest
65-
if: always() && needs.linting.result == 'success' && needs.typecheck.result == 'success' && needs.build.result == 'success'
47+
if: always() && needs.linting.result == 'success' && needs.build.result == 'success'
6648

6749
steps:
6850
- name: Checkout code

.github/workflows/pr-main.yaml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,6 @@ jobs:
2323
- name: Run ESLint
2424
run: npm run lint
2525

26-
typecheck:
27-
runs-on: ubuntu-latest
28-
29-
steps:
30-
- name: Checkout code
31-
uses: actions/[email protected]
32-
33-
- name: Set up Node.js
34-
uses: actions/[email protected]
35-
with:
36-
node-version: 20
37-
38-
- name: Install dependencies
39-
run: npm ci
40-
41-
- name: Run typecheck
42-
run: npm run typecheck
43-
4426
build:
4527
runs-on: ubuntu-latest
4628

0 commit comments

Comments
 (0)