Skip to content

Commit

Permalink
add npm install to CI linting job
Browse files Browse the repository at this point in the history
npm install is needed to run the lint:js rake task
  • Loading branch information
loicginoux committed Apr 12, 2024
1 parent d134781 commit 2f7a74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ version: 2.1
orbs:
browser-tools: circleci/[email protected]
codecov: codecov/[email protected]

executors:
base:
parameters: &parameters
Expand Down Expand Up @@ -237,6 +236,7 @@ jobs:
BUNDLE_ONLY: "lint"
steps:
- checkout
- run: 'npm install'
- run: 'bundle install'
- run:
name: Check Ruby
Expand Down

0 comments on commit 2f7a74e

Please sign in to comment.