Skip to content

Commit 4047f0a

Browse files
committed
add linting checks
1 parent 107bb90 commit 4047f0a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- feature/*
7+
- fix/*
78
- main
89
pull_request:
910
branches:
@@ -23,9 +24,11 @@ jobs:
2324
node-version: 14.x
2425
- name: Install Dependencies
2526
run: npm ci
27+
- name: Run Linting Checks
28+
run: npm run lint
2629
- name: Run Headless Tests
27-
run: xvfb-run --auto-servernum npm test
30+
run: xvfb-run --auto-servernum npm run test
2831
if: runner.os == 'Linux'
2932
- name: Run Tests
30-
run: npm test
33+
run: npm run test
3134
if: runner.os != 'Linux'

0 commit comments

Comments
 (0)