Skip to content

Commit

Permalink
Merge pull request #61 from gcrozariol/develop
Browse files Browse the repository at this point in the history
develop
  • Loading branch information
gcrozariol authored Oct 31, 2023
2 parents 8eab41b + 221184a commit 63cb372
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,27 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
node-version: 18
cache: 'npm'
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- run: npm ci
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- uses: actions/checkout@v3
- run: pnpm i

- run: npm run test:e2e
env:
Expand Down

0 comments on commit 63cb372

Please sign in to comment.