use cache for gh pull actions to speed them up

pull/1287/head
Audric Ackermann 5 years ago
parent 878619a0bc
commit 31f84aaa99
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -47,11 +47,16 @@ jobs:
npm config set python python2.7
npm config set msvs_version 2015
- name: Install yarn
run: npm install yarn --no-save
- uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Install Dependencies #skipped if step before set variable to true
if: |
steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --prefer-offline
- name: Generate and concat files
run: yarn generate
@ -59,7 +64,7 @@ jobs:
- name: Lint Files
if: runner.os != 'Windows'
run: |
yarn format-full
yarn format-full-check
yarn eslint
yarn tslint

@ -48,6 +48,7 @@
"tslint": "tslint --format stylish --project .",
"format": "prettier --list-different --write `git ls-files --modified *.{css,js,json,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,scss,ts,tsx}`",
"format-full": "prettier --list-different --write \"*.{css,js,json,scss,ts,tsx}\" \"./**/*.{css,js,json,scss,ts,tsx}\"",
"format-full-check": "prettier --check \"*.{css,js,json,scss,ts,tsx}\" \"./**/*.{css,js,json,scss,ts,tsx}\"",
"transpile": "tsc --incremental",
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js",
"pow-metrics": "node metrics_app.js localhost 9000",

Loading…
Cancel
Save