Skip to content

Merge pull request #29 from gwtw/dependabot/npm_and_yarn/ansi-regex-3… #43

Merge pull request #29 from gwtw/dependabot/npm_and_yarn/ansi-regex-3…

Merge pull request #29 from gwtw/dependabot/npm_and_yarn/ansi-regex-3… #43

Workflow file for this run

name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and build
run: |
npm ci
npm run build
env:
CI: true
- name: Lint, test and verify coverage
run: |
npm run lint
npm run coverage