huanghs
0b081c37ad
Some checks failed
Gitea Actions Demo / setup (push) Has been cancelled
Gitea Actions Demo / test (push) Has been cancelled
Gitea Actions Demo / build (push) Has been cancelled
build / build (10.x) (push) Has been cancelled
build / build (16.x) (push) Has been cancelled
build / build (18.x) (push) Has been cancelled
Gitea Actions Demo / Gitea-Actions (push) Has been cancelled
Gitea Actions Demo / build-docker (push) Has been cancelled
Cache Npx / task (push) Has been cancelled
21 lines
385 B
YAML
21 lines
385 B
YAML
name: Cache Npx
|
|
on: [push]
|
|
jobs:
|
|
task:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- run: npm config get cache
|
|
|
|
- run: pwd
|
|
|
|
- name: Cache Gradle Wrapper
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.npm/_npx
|
|
key: ${{ runner.os }}-npx
|
|
|
|
- run: npx miniprogram-ci upload --help
|