Skip to content

CI

CI #57

Workflow file for this run

name: 'CI'
on:
workflow_dispatch:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: Install
run: npm ci
- name: Lint
run: npm run lint