Skip to content

Commit

Permalink
Create eslint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oakesjosh committed Feb 23, 2024
1 parent 3072b6b commit 2454801
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ESLint
run-name: '[ESLint] ${{ github.event.head_commit.message }}'

on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '15.x'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci --ignore-scripts
- run: npm rebuild && npm run prepare --if-present
- name: Run ESLint
run: npm run lint-js

0 comments on commit 2454801

Please sign in to comment.