Skip to content

Add URL Validation and Security Headers #103

Add URL Validation and Security Headers

Add URL Validation and Security Headers #103

Workflow file for this run

name: Lint
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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
- name: Lint
run: npm run lint
continue-on-error: true