Skip to content

Commit

Permalink
Add Caching system for node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainAntunes committed Apr 15, 2023
1 parent acab739 commit 2bcc474
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/auto-clean-cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Cleanup caches for closed branches

on:
pull_request:
types:
- closed
workflow_dispatch:

jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
REPO=${{ github.repository }}
BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge"
echo "Fetching list of cache key"
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 )
## Setting this to not fail the workflow while deleting cache keys.
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeysForPR
do
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16 changes: 12 additions & 4 deletions .github/workflows/mercure-web-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,19 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: mercure-web/npm-shrinkwrap.json

- run: npm ci
- name: Get node_modules cache
uses: actions/cache@v3
id: node_modules
with:
path: ./mercure-web/node_modules
# Adding node version as cache key
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/npm-shrinkwrap.json') }}-${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
working-directory: ./mercure-web

- run: npm run test
- name: Run tests
run: npm run test
working-directory: ./mercure-web

0 comments on commit 2bcc474

Please sign in to comment.