ci(workflow): add cache to workflows using actions/setup-node (#287)

This commit is contained in:
Oscar Dominguez 2021-12-30 15:05:57 +01:00 committed by GitHub
parent 7a0f7a9962
commit 5e2e068714
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,14 +3,14 @@ name: build-test
on:
pull_request:
paths-ignore:
- '**.md'
push:
- '**.md'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ${{ matrix.os }}
@ -23,6 +23,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