Skip to content

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

fix: make copyright year dynamic & fix security audit issues

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

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
- dev
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
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 linting
run: npm run lint