Skip to content

Commit

Permalink
for "app" to "frontend" forgot to update test-frontend workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vincerubinetti authored Sep 25, 2024
1 parent 821dfeb commit 82d6d5b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: Test Frontend
on:
pull_request:
paths:
- "app/**"
- "frontend/**"

defaults:
run:
working-directory: ./app
working-directory: ./frontend

jobs:
# test that app can build without issues
# test that frontend can build without issues
test-build:
runs-on: ubuntu-latest
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Run test
run: bun run build

# test that app has no typescript errors
# test that frontend has no typescript errors
test-types:
runs-on: ubuntu-latest
steps:
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Run test
run: bun run test:types

# test that app is properly formatted and linted
# test that frontend is properly formatted and linted
test-lint:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -87,10 +87,10 @@ jobs:
if: runner.debug == '1'
uses: mxschmitt/action-tmate@v3

- name: Install Playwright
- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
working-directory: ./app
working-directory: ./frontend

- name: Run test
run: bun run test:e2e
Expand All @@ -99,5 +99,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: ./app/playwright-report
path: ./frontend/playwright-report
retention-days: 30

0 comments on commit 82d6d5b

Please sign in to comment.