Skip to content

[minor] refactor

[minor] refactor #15

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and lints
name: Lint
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: "16.x"
- run: npm ci --no-optional
- run: npm run lint