ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows

This commit is contained in:
Oscar Dominguez 2021-07-18 22:16:32 +02:00
parent ad01d131cc
commit a388b3faf4
1 changed files with 3 additions and 2 deletions

5
.github/workflows/build.yml vendored Executable file → Normal file
View File

@ -6,10 +6,10 @@ on:
- main
- releases/*
paths-ignore:
- '**.md'
- "**.md"
pull_request:
paths-ignore:
- '**.md'
- "**.md"
jobs:
build:
@ -24,6 +24,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 12.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm run format-check