Skip to content

Merge pull request #13 from aminzer/dependabot/npm_and_yarn/minimatch… #72

Merge pull request #13 from aminzer/dependabot/npm_and_yarn/minimatch…

Merge pull request #13 from aminzer/dependabot/npm_and_yarn/minimatch… #72

Workflow file for this run

name: Verify
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 14.x, 16.x, 18.x ]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test