Skip to content

Commit

Permalink
core: build client before workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiroaisen committed Apr 28, 2024
1 parent bc08974 commit bf03b1b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/front-admin-typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: npm run ci
working-directory: ./front

- run: npm run build --if-present
working-directory: ./front/packages/client

- run: npm run check
5 changes: 5 additions & 0 deletions .github/workflows/front-server-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: npm run ci
working-directory: ./front

- run: npm run build --if-present
working-directory: ./front/packages/client

- run: npm test
5 changes: 5 additions & 0 deletions .github/workflows/front-studio-typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: npm run ci
working-directory: ./front

- run: npm run build --if-present
working-directory: ./front/packages/client

- run: npm run check

0 comments on commit bf03b1b

Please sign in to comment.