chore: cache dependencies in GitHub Actions runner

This commit is contained in:
Jeff Williams 2024-01-19 21:31:59 -08:00
parent 1390f24e63
commit c8b29aadc3
No known key found for this signature in database

View File

@ -25,6 +25,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Check licensing
run: |
npm install
@ -40,6 +41,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Lint
run: |
npm install
@ -55,6 +57,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Test
run: |
npm install