Skip to content

Commit 22fa907

Browse files
committed
ci-jobs.yml: Add job for linting
1 parent 9d62b1c commit 22fa907

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci-jobs.yml

+13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ env:
99
NODE_VERSION: 16.x
1010

1111
jobs:
12+
eslint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js $NODE_VERSION
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ env.NODE_VERSION }}
20+
- name: Install Modules
21+
run: npm ci
22+
- name: Run ESLint
23+
run: npm run lint
24+
1225
unit-tests:
1326
runs-on: ubuntu-latest
1427
steps:

0 commit comments

Comments
 (0)