Skip to content

Bump glob from 11.0.3 to 13.0.0 #108

Bump glob from 11.0.3 to 13.0.0

Bump glob from 11.0.3 to 13.0.0 #108

Workflow file for this run

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
name: Test Workflow
jobs:
test:
permissions:
contents: read # To checkout repository
actions: read # To read workflow artifacts (if needed)
checks: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm' # Add caching for faster runs
- name: Install dependencies
run: npm ci --ignore-scripts && ./build-tools/search-for-shai-hulud.sh --full && npm rebuild esbuild
- name: Run tests
run: npm run test:ci