Skip to content

Commit

Permalink
added caching for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
darklight9811 committed Jul 21, 2024
1 parent 091ba27 commit e800c53
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Cache packages
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-packages-${{ github.sha }}
restore-keys: |
${{ runner.os }}-packages-
- uses: oven-sh/setup-bun@v1

Expand All @@ -63,6 +71,14 @@ jobs:
restore-keys: |
${{ runner.os }}-turbo-
- name: Cache packages
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-packages-${{ github.sha }}
restore-keys: |
${{ runner.os }}-packages-
- uses: oven-sh/setup-bun@v1

- name: Verify code quality
Expand All @@ -83,6 +99,14 @@ jobs:
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Cache packages
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-packages-${{ github.sha }}
restore-keys: |
${{ runner.os }}-packages-
- uses: oven-sh/setup-bun@v1

Expand Down

0 comments on commit e800c53

Please sign in to comment.