Skip to content

Merge pull request #70 from alexidude/patch-1 #142

Merge pull request #70 from alexidude/patch-1

Merge pull request #70 from alexidude/patch-1 #142

Workflow file for this run

name: Build and Lint
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [13.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: Install
run: |
make install
make build
- name: Run linter
run: make lint
- name: Run test
run: make test