Merge pull request #2208 from tailwindlabs/cache-node-modules-on-ci

Cache node modules in CI
This commit is contained in:
Robin Malfait 2020-08-22 00:26:57 +02:00 committed by GitHub
commit 8fc70879ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,19 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Use cached node_modules
id: cache
uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.node-version }}
restore-keys: |
nodeModules-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
env:
CI: true
- run: npm run prepare
- run: npm test
env: