diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-11-10 09:06:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 09:06:48 +0800 |
commit | 765a06340fa7e9779701d1f9941c45fa5c8be819 (patch) | |
tree | cfad1cf725867e6dc2f892425567be2fc24d1eb9 /.github/workflows/ci.yml | |
parent | 5045e140b18485132b533c4ee52a18f97f3bf6f9 (diff) | |
download | tracifyjs-765a06340fa7e9779701d1f9941c45fa5c8be819.tar.gz tracifyjs-765a06340fa7e9779701d1f9941c45fa5c8be819.zip |
enable cache on GitHub Actions (#3570)
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 229f2dd9..0f1cc28b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,10 @@ jobs: TYPE: ${{ matrix.script }} steps: - uses: actions/checkout@v1 + - uses: actions/cache@v1 + with: + path: tmp + key: tmp ${{ matrix.script }} - shell: bash run: | git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs |