Skip to content

Commit

Permalink
Pipeline modification
Browse files Browse the repository at this point in the history
  • Loading branch information
Svana committed Dec 12, 2024
1 parent 7b8102c commit 62a7add
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,21 @@ jobs:
keys: ${{ needs.prepare.outputs.CACHE_KEYS }}
enable-cache: 'node_modules,generated-files'

- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v3
with:
path: |
node_modules
.yarn/cache
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --immutable

- name: Running e2e tests
run: yarn e2e "${AFFECTED_PROJECT}"

Expand Down

0 comments on commit 62a7add

Please sign in to comment.