ci: cache npm and Turbo artifacts
All checks were successful
CI / check (pull_request) Successful in 5m0s
All checks were successful
CI / check (pull_request) Successful in 5m0s
This commit is contained in:
@@ -27,6 +27,22 @@ jobs:
|
|||||||
github-server-url: https://git.gongxue100.com
|
github-server-url: https://git.gongxue100.com
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- name: Restore npm cache
|
||||||
|
uses: https://gitee.com/mirrors_actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: npm-${{ runner.os }}-node22-${{ hashFiles('package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
npm-${{ runner.os }}-node22-
|
||||||
|
|
||||||
|
- name: Restore Turbo cache
|
||||||
|
uses: https://gitee.com/mirrors_actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: .turbo
|
||||||
|
key: turbo-${{ runner.os }}-${{ hashFiles('package-lock.json') }}-${{ gitea.sha }}
|
||||||
|
restore-keys: |
|
||||||
|
turbo-${{ runner.os }}-${{ hashFiles('package-lock.json') }}-
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
@@ -39,7 +55,7 @@ jobs:
|
|||||||
run: npm run typecheck
|
run: npm run typecheck
|
||||||
|
|
||||||
- name: Build frontend
|
- name: Build frontend
|
||||||
run: npm run build -w @gongxue/admin
|
run: npm exec turbo -- run build --filter=@gongxue/admin
|
||||||
|
|
||||||
- name: Run backend tests
|
- name: Run backend tests
|
||||||
run: npm run test -w @gongxue/server -- --runInBand --forceExit
|
run: npm exec turbo -- run test --filter=@gongxue/server -- --runInBand --forceExit
|
||||||
|
|||||||
Reference in New Issue
Block a user