更新 .gitea/workflows/cache-npx.yml
Some checks failed
Gitea Actions Demo / build-docker (push) Has been cancelled
Gitea Actions Demo / setup (push) Failing after 1m3s
Gitea Actions Demo / test (push) Has been skipped
Gitea Actions Demo / build (push) Has been skipped
Cache Npx / task (push) Successful in 28s

This commit is contained in:
huanghs 2024-07-30 14:52:55 +08:00
parent a9a1918974
commit 8e37c423c1

View File

@ -13,10 +13,16 @@ jobs:
- run: pwd - run: pwd
- name: Cache Gradle Wrapper - name: Get npm cache dir
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- run: echo "${{ steps.npm-cache-dir.outputs.dir }}"
- name: Cache npx
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: /root/.npm/_npx path: ${{ steps.npm-cache-dir.outputs.dir }}/_npx
key: ${{ runner.os }}-npx key: ${{ runner.os }}-npx
- run: npx cloc . - run: npx cloc .