diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddc1288d..d34f39a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,14 @@ jobs: - name: Run linter run: npm run lint:ci + - name: Run linter on integration tests + run: npx eslint integration-tests --max-warnings 0 + + - name: Run formatter on integration tests + run: | + npx prettier --check integration-tests + git diff --exit-code + - name: Build project run: npm run build |
