updated header dates (#253) #126
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
# 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 |