Skip to content

Commit

Permalink
Setup eslint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SeoulSKY committed May 29, 2024
1 parent c143054 commit abcc754
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Eslint

on:
push:
branches:
- "*"
pull_request:
branches:
- main

jobs:
eslint:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 21

- name: Install dependencies
run: |
npm install
- name: Run ESLint
run: |
npm run lint

0 comments on commit abcc754

Please sign in to comment.