Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukuboshi committed Mar 11, 2024
2 parents 618934e + 314789e commit e4368ef
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:
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Dependencies
run: npm install

- name: Run ESlint
run: npm run lint

0 comments on commit e4368ef

Please sign in to comment.