Merge pull request 'Add cache to other pipelines' (!36) from feature/custom-pipeline-images into main
All checks were successful
Release / Release (push) Successful in 1m34s
All checks were successful
Release / Release (push) Successful in 1m34s
Reviewed-on: #36 Reviewed-by: Huy <ptran@noreply@simonis.lol>
This commit is contained in:
commit
8303c906aa
@ -46,6 +46,14 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- name: Install bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
- uses: actions/cache@v3
|
||||
working-directory: ./frontend
|
||||
with:
|
||||
path: |
|
||||
frontend/node_modules/
|
||||
key: ${{ runner.os }}-bun-
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd frontend
|
||||
@ -65,6 +73,14 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- name: Install bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
- uses: actions/cache@v3
|
||||
working-directory: ./frontend
|
||||
with:
|
||||
path: |
|
||||
frontend/node_modules/
|
||||
key: ${{ runner.os }}-bun-
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd frontend
|
||||
@ -84,6 +100,22 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- name: Install bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
- uses: actions/cache@v3
|
||||
working-directory: ./frontend
|
||||
with:
|
||||
path: |
|
||||
frontend/node_modules/
|
||||
key: ${{ runner.os }}-bun-
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
- uses: actions/cache@v3
|
||||
working-directory: ./frontend
|
||||
with:
|
||||
path: |
|
||||
frontend/dist/
|
||||
key: ${{ runner.os }}-dist-
|
||||
restore-keys: |
|
||||
${{ runner.os }}-dist-
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd frontend
|
||||
|
Loading…
x
Reference in New Issue
Block a user