diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ba5a7e..62658ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,8 +50,10 @@ jobs: - name: "Build site" run: bundle exec jekyll build - - name: "Run rubocop" - run: bundle exec rubocop + - name: "Run style checks" + run: | + bundle exec rubocop + yarn run eslint - name: "Run tests" run: bundle exec rake |
