Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
markspolakovs committed Jan 1, 2024
1 parent 29803d4 commit 619f38b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
- run: yarn install --immutable --inline-builds

- name: Migrate and seed database
run: npx prisma migrate deploy && npx prisma db seed
run: yarn prisma:migrateProd && yarn prisma:seed

- name: Build application
run: npm run build
run: yarn build

- name: Get Playwright version
id: playwright-version
run: echo version=$(npm info @playwright/test version) >> $GITHUB_OUTPUT
run: echo version=$(yarn info --json @playwright/test | jq -r '.children.Version') >> $GITHUB_OUTPUT

- name: Cache playwright binaries
uses: actions/cache@v3
Expand All @@ -62,6 +62,7 @@ jobs:

- name: Run Playwright tests
run: npx playwright test

- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down

0 comments on commit 619f38b

Please sign in to comment.