Skip to content

Commit

Permalink
Merge pull request #14 from szepeviktor/patch-2
Browse files Browse the repository at this point in the history
run JS lint in CI
  • Loading branch information
adamlaki authored Mar 3, 2024
2 parents d208689 + 594e2c3 commit 9df1173
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
name: Install dependencies
run: npm ci
-
name: Run linter
name: Run SASS linter
run: npm run sass:lint
-
name: Run JavaScript linter
run: npm run js:lint
-
name: Check EditorConfig configuration
run: test -f .editorconfig
Expand Down
2 changes: 1 addition & 1 deletion src/js/cookie-consent.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
setCookie, getCookie, issetCookie, removeCookie,
} from './cookie.js';
} from './cookie';

(() => {
const prefix = 'spruce';
Expand Down

0 comments on commit 9df1173

Please sign in to comment.