Skip to content

Commit

Permalink
feat: eslint yml, npm-shrinkwrap.json was added
Browse files Browse the repository at this point in the history
  • Loading branch information
rivexe committed Jul 11, 2024
1 parent ca235ad commit 82126df
Show file tree
Hide file tree
Showing 2 changed files with 10,268 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/lint-eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ESLint

on:
workflow_dispatch:
push:
branches: [master, develop, refactor/eslint]
pull_request:
branches: [master, develop, refactor/eslint]

env:
NODE_VERSION: 16

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src
steps:
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}

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

- name: Install Dependencies
run: npm ci

- name: Code Linting
run: npx eslint *.js
Loading

0 comments on commit 82126df

Please sign in to comment.