Skip to content

npm(deps-dev): bump lint-staged from 16.1.6 to 16.2.4 #95

npm(deps-dev): bump lint-staged from 16.1.6 to 16.2.4

npm(deps-dev): bump lint-staged from 16.1.6 to 16.2.4 #95

Workflow file for this run

name: CI
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
jobs:
tests:
runs-on: ubuntu-latest
name: Tests on Node 22
steps:
- name: "Checkout"
uses: actions/checkout@v5
- name: Set Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
registry-url: https://npm.pkg.github.com
cache-dependency-path: package-lock.json
env:
RUNNER_TEMP: "/tmp/"
- name: Install Node Modules
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
- name: Run Tests
run: npm test