Skip to content

fix: handle long globs #25315

fix: handle long globs

fix: handle long globs #25315

Workflow file for this run

name: Dev
on:
push:
branches:
- main
- patch-release
- next
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
node:
# Latest even version
- "20"
# Minimal version for development
- "18"
include:
- os: "ubuntu-latest"
# Pick a version that is fast (normally highest LTS version)
node: "20"
ENABLE_CODE_COVERAGE: true
FULL_TEST: true
CHECK_TEST_PARSERS: true
# Versions not tested on linux, normally only even versions
# If latest version is an odd number, it can be listed bellow too
- os: "ubuntu-latest"
node: "21"
env:
ENABLE_CODE_COVERAGE: ${{ matrix.ENABLE_CODE_COVERAGE }}
FULL_TEST: ${{ matrix.FULL_TEST }}
CHECK_TEST_PARSERS: ${{ matrix.CHECK_TEST_PARSERS }}
name: ${{ matrix.FULL_TEST && '[Full Test] ' || '' }} Node.js ${{ matrix.node }} on ${{ startsWith(matrix.os, 'macos') && 'MacOS' || startsWith(matrix.os, 'windows') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable
- name: Run Tests
if: ${{ !matrix.ENABLE_CODE_COVERAGE }}
run: yarn test
- name: Run Tests (coverage)
if: ${{ matrix.ENABLE_CODE_COVERAGE }}
run: yarn c8 yarn test
- name: Upload Coverage
uses: codecov/codecov-action@v4
if: ${{ matrix.ENABLE_CODE_COVERAGE }}
with:
fail_ci_if_error: true
files: coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}