Skip to content

Commit

Permalink
ci: fix build check in pr workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Jul 19, 2024
1 parent 6ca689d commit e4dc33b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/deploy-web-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@ jobs:
contents: read

steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0

- uses: actions/setup-node@v4

- uses: pnpm/action-setup@v4
with:
run_install: false
Expand All @@ -41,8 +37,7 @@ jobs:
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store

- name: Build
run: pnpm --filter artifacts build && pnpm --filter web build
- run: pnpm --filter web build

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: pnpm -r typecheck

- name: Check build
run: pnpm -r build
run: pnpm -r --link-workspace-packages build

- name: Test
run: pnpm test.ci

0 comments on commit e4dc33b

Please sign in to comment.