diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4db844656..f49f3730a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -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 diff --git a/package.json b/package.json index 95aa400ff..a2dfef599 100644 --- a/package.json +++ b/package.json @@ -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",