use cache for npm #644
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: Build | |
on: | |
- push | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- windows-2019 | |
- windows-2022 | |
- macos-11 | |
- macos-12 | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
nodejs: | |
- 16 | |
fail-fast: false | |
steps: | |
- name: Turn off auto-crlf | |
run: git config --global core.autocrlf false | |
- name: Checkout source codes | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.nodejs }} | |
- name: Cache NPM | |
uses: ./.github/actions/cache-npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Exit if differ (forgot to commit dist dir?) | |
run: git diff --exit-code --quiet | |
- name: Verify | |
run: npm run verify |