Skip to content

Commit bb5cb65

Browse files
committed
WIP
1 parent 1aae02f commit bb5cb65

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ jobs:
1515

1616
- name: yarn install
1717
run: yarn --immutable
18-
shell: bash
1918

2019
- name: Static code validation
2120
run: yarn static-code-validation
22-
shell: bash
2321

2422
test:
2523
runs-on: ubuntu-24.04
@@ -51,7 +49,7 @@ jobs:
5149

5250
build:
5351
runs-on: ubuntu-24.04
54-
needs: [lint, test]
52+
needs: [static-code-validation, test]
5553
steps:
5654
- uses: actions/checkout@v4
5755
- uses: actions/setup-node@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prepare": "husky",
2727
"lint": "yarn oxlint --deny-warnings src",
2828
"type-check": "tsc --noEmit --emitDeclarationOnly false",
29-
"static-code-validation": "concurrently \"yarn lint\" \"yarn type-check\"",
29+
"static-code-validation": "concurrently \"yarn lint\" \"yarn type-check\" \"yarn prettier-check\"",
3030
"test": "jest",
3131
"test-coverage": "jest --coverage",
3232
"build-declarations": "tsc -p tsconfig.build.json --isolatedModules false --declaration true --declarationMap true --noEmit false --emitDeclarationOnly true",

0 commit comments

Comments
 (0)