Skip to content

Commit

Permalink
ci: update workflow to match scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Nov 13, 2024
1 parent a6ed199 commit b460b42
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ env:
CI: true

jobs:
lint:
name: Lint codebase
validate:
name: Validate codebase
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand All @@ -23,13 +23,13 @@ jobs:
with:
run_install: true

- name: Lint
run: pnpm lint
- name: Check
run: pnpm check

build:
name: Build, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: lint
needs: validate
strategy:
matrix:
node: ["18.x", "20.x", "22.x"]
Expand Down

0 comments on commit b460b42

Please sign in to comment.