Skip to content

Commit 06010fe

Browse files
committed
Removed redundant actions tasks
1 parent 7f1d1ba commit 06010fe

File tree

4 files changed

+1
-10
lines changed

4 files changed

+1
-10
lines changed

.github/workflows/compiler.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
- name: Lint
2727
working-directory: ./packages/compiler
2828
run: npm run lint
29-
- name: Type check
30-
working-directory: ./packages/compiler
31-
run: npm run type-check
3229
- name: Build
3330
working-directory: ./packages/compiler
3431
run: npm run build

.github/workflows/react.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
- name: Lint
2727
working-directory: ./packages/react
2828
run: npm run lint
29-
- name: Type check
30-
working-directory: ./packages/react
31-
run: npm run type-check
3229
- name: Build
3330
working-directory: ./packages/react
3431
run: npm run build

.github/workflows/shared.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@ jobs:
2929
- name: Type check
3030
working-directory: ./packages/shared
3131
run: npm run type-check
32-
- name: Build
33-
working-directory: ./packages/shared
34-
run: npm run build

packages/shared/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default [
2222
moduleSpecifier: "node:fs",
2323
allowed: [/src\/compiler\/cli\//],
2424
message:
25-
"File system access is only allowed in the CLI wrapper because other code needs to be isomorphic",
25+
"File system access is only allowed in the CLI wrapper because other code should be kept isomorphic",
2626
},
2727
],
2828
}),

0 commit comments

Comments
 (0)