Skip to content

fix: make copyright year dynamic & fix security audit issues #104

fix: make copyright year dynamic & fix security audit issues

fix: make copyright year dynamic & fix security audit issues #104

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- dev
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests
run: npm test
- name: Verify build
run: npm run build