Skip to content

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 #299

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 #299

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['20', '22', 'lts/*']
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --immutable
- run: yarn test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: yarn
- run: yarn install --immutable
- run: yarn lint:ci