Skip to content

Commit

Permalink
only lint in one node version
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Nov 12, 2024
1 parent 854d3ed commit 24390ff
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ on:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm
- run: pnpm i --frozen-lockfile
- run: pnpm run lint

tests:
runs-on: ubuntu-latest

Expand All @@ -22,7 +34,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm i --frozen-lockfile
- run: pnpm run lint
- run: pnpm test

ember-template-lint-versions:
Expand Down

0 comments on commit 24390ff

Please sign in to comment.