Skip to content

Commit

Permalink
Skip linting against Node.js 16
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Sep 15, 2024
1 parent f8a9187 commit 5eebe45
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ commands:
postinstall:
- run: yarn -s check:audit

test:
prepare:
parameters:
browser:
type: boolean
Expand All @@ -83,6 +83,8 @@ commands:
steps:
- browser-tools/install-chrome

lint:
steps:
- run:
name: Prettier formatting
command: yarn check:format
Expand All @@ -99,6 +101,8 @@ commands:
name: stylelint
command: yarn lint:css

test:
steps:
- run:
name: Jest
command: yarn test:coverage --ci -i --reporters=default --reporters=jest-junit
Expand Down Expand Up @@ -185,43 +189,49 @@ jobs:
steps:
- audit

# Testing
test-node16:
executor:
name: node
browser: true
version: '16.20'
steps:
- test:
- prepare:
force: true
browser: true
- test

test-node18:
executor:
name: node
browser: true
version: '18.20'
steps:
- test:
- prepare:
force: true
browser: true
- lint
- test

test-node20:
executor:
name: node
browser: true
steps:
- test:
- prepare:
browser: true
- lint
- test

test-node22:
executor:
name: node
browser: true
version: '22.8'
steps:
- test:
- prepare:
browser: true
- lint
- test

# Docker
docker-build-latest:
Expand Down

0 comments on commit 5eebe45

Please sign in to comment.