Skip to content

Commit

Permalink
Added eslint github action
Browse files Browse the repository at this point in the history
  • Loading branch information
njal3001 committed Oct 20, 2023
1 parent 265c2c2 commit 6267db0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: frontend-integration
run-name: ${{ github.actor }} Frontend Integration

on: [push]
jobs:
run-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0

0 comments on commit 6267db0

Please sign in to comment.