Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey committed Nov 6, 2024
1 parent ac5e3df commit 7836bb4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,33 @@ concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
playwright:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout BackOffice
uses: actions/checkout@v4
with:
repository: inseefr/bauhaus-back-office
path: ./bauhaus-back-office
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci --force
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- uses: adambirds/[email protected]
with:
compose-file: './bauhaus-back-office/compose.yml'
test-command: 'npx playwright test'
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with: I
name: playwright-report
path: playwright-report/
retention-days: 30
test-build:
name: Test & Build & Deploy Sonar report
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7836bb4

Please sign in to comment.