chore: Update workflows to cache dependencies (#2083)

This commit is contained in:
Jongwoo Han
2022-10-02 10:38:07 +02:00
committed by GitHub
parent aaf710c024
commit f86059f097
4 changed files with 38 additions and 9 deletions
+9 -4
View File
@@ -10,13 +10,18 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: setup node
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: ${{ matrix.node-version }}
cache: npm
- name: npm install, generate readme
run: |