Skip to content

changed email

changed email #66

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
cache: "npm"
- name: Install Dependencies
run: npm --production=false ci
- name: Run Lint
run: npm run lint:github