Skip to content

Commit

Permalink
ci-jobs.yml: Add job for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fschrempf committed Dec 16, 2022
1 parent 9a45fb8 commit 4373aec
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ env:
NODE_VERSION: 16.x

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js $NODE_VERSION
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Modules
run: npm ci
- name: Run ESLint
run: npm run lint

unit-tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 4373aec

Please sign in to comment.