UNPKG

eslint-plugin-cypress

Version:
156 lines (146 loc) 3.79 kB
version: 2.1 executors: docker-executor: docker: - image: cimg/node:22.14.0 resource_class: medium workflows: main: jobs: - lint - test-v8 - test-v9 - build-test-project - test-test-project: matrix: parameters: eslint-version: ['9'] config-file: [ # configurations correspond to examples in README 'default', 'recommended', 'globals', ] requires: - build-test-project - release: requires: - lint - test-v8 - test-v9 - test-test-project filters: branches: only: - master jobs: lint: executor: docker-executor 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: executor: docker-executor 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: executor: docker-executor 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 build-test-project: executor: docker-executor steps: - checkout - run: name: Install dependencies command: npm ci - run: name: Build tarball command: npm pack - run: name: Get version command: | echo "PLUGIN_VERSION=$(jq -r '.version' package.json)" >> $BASH_ENV cp $BASH_ENV bash.env - persist_to_workspace: root: . paths: - eslint-plugin-cypress-*.tgz - bash.env test-test-project: description: Run ESLint with different configurations parameters: eslint-version: description: Version of ESLint to use default: 'latest' type: string config-file: description: Configuration file default: 'default' type: string executor: docker-executor working_directory: ./test-project steps: - checkout: path: ../ - attach_workspace: at: . - run: name: Get plugin version command: | cat bash.env >> $BASH_ENV - run: name: Install dependencies command: | npm install eslint@<< parameters.eslint-version>> ./eslint-plugin-cypress-$PLUGIN_VERSION.tgz -D - run: name: Display ESLint version command: | npx eslint --version - run: echo Testing a << parameters.config-file >> configuration - run: name: Lint with example configuration command: | npx eslint --config ./eslint-configs/eslint.<< parameters.config-file >>.mjs . release: executor: docker-executor steps: - checkout - run: name: Install dependencies command: npm ci - run: name: Run semantic release command: npm run semantic-release