Skip to content

fix(deps): update dependency simple-git to v3.36.0 [security] #2198

fix(deps): update dependency simple-git to v3.36.0 [security]

fix(deps): update dependency simple-git to v3.36.0 [security] #2198

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
jobs:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 20
- 22
- 24
- 25
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test
test:
needs: test_matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: npm
- run: npm install
- run: npm run lint