2024-07-30 10:35:31 +08:00
|
|
|
name: Cache Npx
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
task:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-07-30 11:48:38 +08:00
|
|
|
|
|
|
|
- run: npm config get cache
|
|
|
|
|
|
|
|
- run: pwd
|
2024-07-30 10:35:31 +08:00
|
|
|
|
|
|
|
- name: Cache Gradle Wrapper
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ~/.npm/_npx
|
|
|
|
key: ${{ runner.os }}-npx
|
|
|
|
|
2024-07-30 11:33:16 +08:00
|
|
|
- run: npx miniprogram-ci upload --help
|