Skip to content

docs: add lesha1201 as a contributor for maintenance (#866) #1131

docs: add lesha1201 as a contributor for maintenance (#866)

docs: add lesha1201 as a contributor for maintenance (#866) #1131

Workflow file for this run

name: Pipeline
on:
push:
branches:
# semantic-release valid branches and all-contributors branches
- '+([0-9])?(.{+([0-9]),x}).x'
- 'main'
- 'next'
- 'next-major'
- 'beta'
- 'alpha'
- 'all-contributors/**'
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
code_validation:
name: 'Code Validation: ${{ matrix.validation_script }}'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
validation_script:
['lint', 'type-check', 'format:check', 'generate-all:check']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Run script
run: npm run ${{ matrix.validation_script }}
tests:
name: Tests (Node v${{ matrix.node }} - ESLint v${{ matrix.eslint }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# The .x indicates "the most recent one"
node: [19.x, 18.x, 17.x, 16.x, 14.x, 14.17.0, 12.x, 12.22.0]
eslint: [7.5, 7, 8]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Install ESLint v${{ matrix.eslint }}
run: npm install --no-save --force eslint@${{ matrix.eslint }}
- name: Run tests
run: npm run test:ci
release:
name: NPM Release
needs: [code_validation, tests]
runs-on: ubuntu-latest
if:
${{ github.repository == 'testing-library/eslint-plugin-testing-library' &&
contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha',
github.ref) && github.event_name == 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Build package
run: npm run build
- name: Release the new version to NPM
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
run: npx semantic-release