Skip to content

Merge pull request #51 from github/dependabot/npm_and_yarn/braces-3.0.3 #73

Merge pull request #51 from github/dependabot/npm_and_yarn/braces-3.0.3

Merge pull request #51 from github/dependabot/npm_and_yarn/braces-3.0.3 #73

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set git to not change EoL
run: |
git config --global core.autocrlf false
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true