Skip to content

updated header dates (#253) #126

updated header dates (#253)

updated header dates (#253) #126

Workflow file for this run

# Reference: <https://help.github.com/en/actions/language-and-framework-guides/using-nodejs-with-github-actions>
name: Build
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
validate:
runs-on: windows-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v1
with:
path: "%AppData%\npm-cache" # npm cache files are stored under the AppData folder on Windows
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: npm install, build, and test
run: |
npm install
npm run build-nofix
npm test
env:
CI: true