filename-case
: Add option for multiple file extensions
#3752
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 | |
- pull_request | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 20 | |
- 16 | |
os: | |
- ubuntu-latest | |
- windows-latest | |
include: | |
- os: ubuntu-latest | |
node-version: 18 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npx ava | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install | |
- run: npm run lint | |
- run: rm -rf test/snapshots | |
# Force update snapshots, https://github.com/avajs/ava/discussions/2754 | |
- run: npx c8 ava --update-snapshots | |
env: | |
AVA_FORCE_CI: not-ci | |
- run: git diff --exit-code | |
- uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true | |
files: coverage/lcov.info | |
run-rules-on-codebase: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install | |
- run: npm run run-rules-on-codebase | |
integration: | |
name: Integration test (${{ matrix.group }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
group: | |
- "1" | |
- "2" | |
- "3" | |
- "4" | |
- "5" | |
- "6" | |
- "7" | |
- "8" | |
- "9" | |
- "10" | |
- "11" | |
- "12" | |
- "13" | |
env: | |
TIMING: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install | |
- run: npm run integration -- --group ${{ matrix.group }} |