Skip to content

Fix #96 - Refactor structure of project #10

Fix #96 - Refactor structure of project

Fix #96 - Refactor structure of project #10

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run linting
run: npm run lint