Skip to content

Commit

Permalink
chore: update end-2-end workflow to using pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Jipperism committed Oct 30, 2023
1 parent 74d06ab commit dd155da
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,23 @@ jobs:
- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.18.1'

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.9.0
- name: Set up Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18.15.0"
cache: "yarn"

cache: "pnpm"
- name: Run e2e tests
run: |
env && yarn e2e:ci-run-tests
env && pnpm install --frozen-lockfile e2e:ci-run-tests
- name: Output logs
if: always()
run: |
yarn e2e:ci-logs > e2e.ci.log
pnpm run e2e:ci-logs > e2e.ci.log
- name: Save logs
if: always()
Expand Down

0 comments on commit dd155da

Please sign in to comment.