diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-06 15:49:15 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-06 15:49:15 +0200 |
| commit | 4ebbd218a034d31c084e62fcf9fa78b1700acade (patch) | |
| tree | 9fe75e27f74ea15ad24b4c870c3b53af4a85d934 /.github/workflows | |
| parent | 6f09e2693dbeee86833347a8ac265c512fd21269 (diff) | |
| download | jo.mssola.com-4ebbd218a034d31c084e62fcf9fa78b1700acade.tar.gz jo.mssola.com-4ebbd218a034d31c084e62fcf9fa78b1700acade.zip | |
ci: perform js tests as well
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
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 |
