Skip to content

lint fixes

lint fixes #140

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: 16
registry-url: https://registry.npmjs.org
cache: 'npm'
- run: node --version
- run: npm --version
- run: npm cache clean --force
- name: Install Node Dependencies
run: npm install --no-package-lock
- name: Linting
run: npm run lint
- name: Build
run: npm run build