Skip to content

Commit

Permalink
run app tests in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
frontendphil committed Jan 9, 2025
1 parent 1f341e6 commit 8b08240
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,19 @@ jobs:
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --prefer-offline
- run: pnpm test

pilot-app:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./deployables/app
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- run: pnpm install --prefer-offline
- run: pnpm test

0 comments on commit 8b08240

Please sign in to comment.