Skip to content

build(deps-dev): Bump jws from 4.0.0 to 4.0.1 #119

build(deps-dev): Bump jws from 4.0.0 to 4.0.1

build(deps-dev): Bump jws from 4.0.0 to 4.0.1 #119

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run validation
run: npm run validate
- name: Build project
run: npm run build