ci: add more linting checks (#205) #187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
# default semantic-release branches | |
- +([0-9])?(.{+([0-9]),x}).x | |
- main | |
- next | |
- next-major | |
- beta | |
- alpha | |
pull_request: | |
schedule: | |
- cron: 0 0 * * 0 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: ⬣ Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: π₯ Install dependencies | |
run: npm install | |
- name: βΆοΈ Run lint script | |
run: npm run lint | |
test: | |
name: | |
π§ͺ Test (Node@${{ matrix.node }} - ESLint@${{ matrix.eslint }} - ${{ | |
matrix.os }}) | |
strategy: | |
matrix: | |
eslint: [8] | |
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 20] | |
os: [ubuntu-latest] | |
include: | |
# On other platforms | |
- os: windows-latest | |
eslint: 8 | |
node: 18 | |
- os: macos-latest | |
eslint: 8 | |
node: 18 | |
# On old ESLint versions | |
- eslint: 7 | |
node: 18 | |
os: ubuntu-latest | |
- eslint: 6 | |
node: 18 | |
os: ubuntu-latest | |
# On the minimum supported ESLint/Node.js version | |
- eslint: 6.0.0 | |
node: 12.22.0 | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup Node v${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: π₯ Install dependencies | |
run: npm install | |
- name: π₯ Install ESLint v${{ matrix.eslint }} | |
run: npm install --save-dev eslint@${{ matrix.eslint }} | |
- name: π Build | |
run: npm run build | |
- name: βΆοΈ Run test script | |
run: npm run test | |
- name: β¬οΈ Upload coverage report | |
uses: codecov/codecov-action@v4 | |
release: | |
name: π Release | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
if: github.repository == 'eslint-community/eslint-utils' && | |
contains('refs/heads/main,refs/heads/next,refs/heads/beta,refs/heads/alpha', | |
github.ref) && github.event_name == 'push' | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: π₯ Install dependencies | |
run: npm install | |
- name: π Build | |
run: npm run build | |
- name: π Release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
semantic_version: 19 | |
branches: | | |
[ | |
'+([0-9])?(.{+([0-9]),x}).x', | |
'main', | |
'next', | |
'next-major', | |
{name: 'beta', prerelease: true}, | |
{name: 'alpha', prerelease: true} | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |