1
0
Fork 0
mirror of https://github.com/actions/setup-java.git synced 2024-09-20 00:26:43 +00:00

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

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

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