mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-31 18:49:43 +08:00
chore(ci): cache node_modules
This commit is contained in:
parent
86350cea97
commit
b9731d4abb
32
.github/workflows/nodejs.yml
vendored
32
.github/workflows/nodejs.yml
vendored
@ -4,7 +4,6 @@ on: [push]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
@ -17,12 +16,23 @@ jobs:
|
|||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: Cache ionic site
|
# - name: Cache ionic site
|
||||||
id: ionic-site
|
# id: ionic-site
|
||||||
|
# uses: actions/cache@v2
|
||||||
|
# with:
|
||||||
|
# path: ~/ionic-site/
|
||||||
|
# key: ionic-site-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
- name: Cache node modules
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
with:
|
with:
|
||||||
path: ~/ionic-site/
|
path: ~/.npm
|
||||||
key: ionic-site-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-build-
|
||||||
|
${{ runner.os }}-
|
||||||
- name: Setup git
|
- name: Setup git
|
||||||
run: bash ./scripts/git/config.sh
|
run: bash ./scripts/git/config.sh
|
||||||
- name: Prepare ionic-site repo
|
- name: Prepare ionic-site repo
|
||||||
@ -38,9 +48,9 @@ jobs:
|
|||||||
run: npm run test
|
run: npm run test
|
||||||
- name: Readmes
|
- name: Readmes
|
||||||
run: npm run readmes
|
run: npm run readmes
|
||||||
- name: Deploy doc
|
# - name: Deploy doc
|
||||||
if: github.ref == 'refs/heads/master'
|
# if: github.ref == 'refs/heads/master'
|
||||||
run: bash ./scripts/docs/update_docs.sh
|
# run: bash ./scripts/docs/update_docs.sh
|
||||||
env:
|
# env:
|
||||||
GITHUB_PROJECT_REPONAME: ${{ github.repository }}
|
# GITHUB_PROJECT_REPONAME: ${{ github.repository }}
|
||||||
GITHUB_SHA1: ${{ github.sha }}
|
# GITHUB_SHA1: ${{ github.sha }}
|
||||||
|
Loading…
Reference in New Issue
Block a user