diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40bc005d..c65d254b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,11 @@ jobs: run: npm ci - name: Build run: npm run build --if-present - - name: Run tests - run: npm test + - name: Lint + run: npm run test-lint + env: + CI: true + - name: Tests + run: npm run test-code env: CI: true |