Skip to content

Commit

Permalink
馃И feat: use pnpm for automation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nvh95 committed Dec 5, 2022
1 parent 1030127 commit 866f04d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/automation.yml
Expand Up @@ -7,9 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Cypress run
uses: cypress-io/github-action@v4
with:
start: npm run start
start: pnpm start
wait-on: 'http://localhost:3000'
wait-on-timeout: 120

0 comments on commit 866f04d

Please sign in to comment.