Skip to content

Commit

Permalink
ESLintを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukuboshi committed Mar 3, 2024
1 parent 6dd5be4 commit 314789e
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 314789e

Please sign in to comment.