Skip to content

Commit 0ade444

Browse files
committed
Update workflows
1 parent 16c2bad commit 0ade444

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/static-example-apps-checks.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,11 @@ jobs:
2626
with:
2727
node-version: 18
2828
cache: 'yarn'
29-
- name: Install root node dependencies
29+
- name: Install node dependencies
3030
run: yarn --immutable && yarn prepare
31-
- name: Install ${{ matrix.working-directory }} app node dependencies
32-
working-directory: ${{ matrix.working-directory }}
33-
run: yarn
3431
- name: Check types
3532
working-directory: ${{ matrix.working-directory }}
36-
run: yarn tsc --noEmit
33+
run: yarn ts-check
3734
- name: Lint
3835
working-directory: ${{ matrix.working-directory }}
39-
run: yarn lint-check
36+
run: yarn lint-js

.github/workflows/static-root-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
node-version: 18
2727
cache: 'yarn'
2828
- name: Install node dependencies
29-
run: yarn
29+
run: yarn --immutable && yarn prepare
3030
- name: Check types
3131
working-directory: ${{ env.WORKING_DIRECTORY }}
32-
run: yarn tsc --noEmit
32+
run: yarn ts-check
3333
- name: Lint
3434
working-directory: ${{ env.WORKING_DIRECTORY }}
35-
run: yarn lint:js-root
35+
run: yarn lint-js
3636
- name: Check for circular dependencies
3737
working-directory: ${{ env.WORKING_DIRECTORY }}
3838
run: yarn circular-dependency-check

0 commit comments

Comments
 (0)