Skip to content

Commit

Permalink
Add Lint CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBrokenRail committed Oct 20, 2023
1 parent d2b951a commit 3e4da10
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint

on:
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint

0 comments on commit 3e4da10

Please sign in to comment.