Skip to content

add cicd

add cicd #5

Workflow file for this run

name: Lint & Test
on:
pull_request:
branches:
- '**'
jobs:
lint_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test