Skip to content

Commit

Permalink
ci: πŸ’š i think this action should now work .-.
Browse files Browse the repository at this point in the history
  • Loading branch information
diecodev committed May 8, 2024
1 parent da42eff commit 8b8771f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,26 @@ jobs:
- name: clone repo
uses: actions/checkout@v4

- name: installing pnpm
uses: pnpm/action-setup@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- run: pnpm build

- name: Install Playwright Browsers
run: pnpx playwright install --with-deps
run: npx playwright install --with-deps

- name: Run Playwright tests
run: pnpm run test
run: pnpm test || exit 1

npm_publish:
needs: playwright_test
Expand Down

0 comments on commit 8b8771f

Please sign in to comment.