diff options
Diffstat (limited to '.github/workflows/node.yml')
-rw-r--r-- | .github/workflows/node.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 066986f..03cac87 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -23,8 +23,8 @@ on: - "**.svelte" jobs: - build-and-test: - name: Build and Test + lint-build-and-test: + name: Lint, Build and Test runs-on: ${{ matrix.os }} strategy: matrix: @@ -49,5 +49,5 @@ jobs: cache: "pnpm" - name: Check formatting run: pnpm lint - - name: Build and Test + - name: Lint, Build and Test run: pnpm build && pnpm test |