Skip to content

Commit

Permalink
eslint github actions addded
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita committed Sep 13, 2024
1 parent ae3bad4 commit 63ca3b9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ESLint Check

on:
push:
branches:
- main # Запускати на кожен push в гілку main
- master # або гілку master
- develop
pull_request:
branches:
- main
- master
- develop

jobs:
lint:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.17'

- name: Install dependencies
run: npm install

- name: Run ESLint
run: npm run lint

0 comments on commit 63ca3b9

Please sign in to comment.