Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 10 updates #350

chore(deps-dev): bump the development-dependencies group across 1 directory with 10 updates

chore(deps-dev): bump the development-dependencies group across 1 directory with 10 updates #350

Workflow file for this run

name: Sigyn LogQL
on:
push:
branches: [main]
pull_request:
paths:
- "package-lock.json"
- "src/logql/**"
- "!src/logql/**/*.md"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test --workspace=src/logql