Skip to content

build(deps): bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 #35

build(deps): bump @isaacs/brace-expansion from 5.0.0 to 5.0.1

build(deps): bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 #35

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
continue-on-error: false