This commit is contained in:
2024-11-28 23:08:17 +01:00
parent 8895fde030
commit 0dda8e760c
16116 changed files with 2866428 additions and 71 deletions

82
node_modules/eslint-plugin-cypress/circle.yml generated vendored Normal file
View File

@@ -0,0 +1,82 @@
version: 2.1
workflows:
version: 2.1
main:
jobs:
- lint
- test-v8
- test-v9
- release:
requires:
- lint
- test-v8
- test-v9
filters:
branches:
only:
- master
jobs:
lint:
docker:
- image: cimg/node:22.11.0
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Lint code
command: npm run lint
test-v8:
docker:
- image: cimg/node:22.11.0
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Install ESLint 8
command: npm install eslint@8
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Test ESLint 8
command: npm run test:legacy
test-v9:
docker:
- image: cimg/node:22.11.0
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Install ESLint 9
command: npm install eslint@9
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Test ESLint 9
command: npm test
release:
docker:
- image: cimg/node:22.11.0
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Run semantic release
command: npm run semantic-release