Skip to content

chore(deps-dev): bump js-cookie from 3.0.5 to 3.0.8 #3047

chore(deps-dev): bump js-cookie from 3.0.5 to 3.0.8

chore(deps-dev): bump js-cookie from 3.0.5 to 3.0.8 #3047

Workflow file for this run

name: Node CI
on: [push]
permissions:
contents: read
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: ['22.x', '24.x']
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci --ignore-scripts
- run: npm run build --if-present
- run: npm test --if-present