forked from mystiq/hydrogen-web
Merge pull request #363 from vector-im/bwindels/cache-ci-deps
Enable yarn cache in github actions
This commit is contained in:
commit
bc09ed8bf6
1 changed files with 17 additions and 5 deletions
22
.github/workflows/codechecks.js.yml
vendored
22
.github/workflows/codechecks.js.yml
vendored
|
@ -1,6 +1,8 @@
|
||||||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
||||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||||
|
|
||||||
|
# yarn cache setup from https://www.karltarvas.com/2020/12/09/github-actions-cache-yarn-install.html
|
||||||
|
|
||||||
name: Code checks
|
name: Code checks
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
@ -19,15 +21,25 @@ jobs:
|
||||||
node-version: [14.x]
|
node-version: [14.x]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout project source
|
- name: Checkout source
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install tools
|
- name: Install tools
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: Install project dependencies
|
# See: https://github.com/actions/cache/blob/main/examples.md#node---yarn
|
||||||
run: npm install --also=dev
|
- name: Get Yarn cache directory
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||||
|
- name: Use Yarn cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: yarn-cache
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: yarn install --prefer-offline --frozen-lockfile
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
run: npm test
|
run: yarn test
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: npm run lint-ci
|
run: yarn run lint-ci
|
Loading…
Reference in a new issue