We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baacbba commit fa5fa4aCopy full SHA for fa5fa4a
.github/workflows/ci.yml
.github/workflows/test.yml
@@ -25,9 +25,6 @@ jobs:
25
26
- name: Install dependencies
27
run: yarn install --frozen-lockfile
28
-
29
- - name: Run lib unit tests
30
- run: yarn test:lib:unit
31
32
- name: Gotta build the lib first for downstream stuff
33
run: yarn build:lib
@@ -36,9 +33,15 @@ jobs:
36
env:
37
34
# This ensures testcontainers can find Docker
38
35
TESTCONTAINERS_HOST_OVERRIDE: "localhost"
39
40
- - name: TypeCheck
41
- run: yarn typecheck
42
43
- - name: Build package
44
- run: yarn build
+
+ - name: Build
+ run: yarn build
+ # - name: Lint
+ # run: yarn lint
+ - name: Format check
+ run: yarn format:check
45
46
+ - name: Typecheck
47
+ run: yarn typecheck
0 commit comments