Skip to content

chore(deps-dev): bump lint-staged from 16.2.6 to 16.2.7 #84

chore(deps-dev): bump lint-staged from 16.2.6 to 16.2.7

chore(deps-dev): bump lint-staged from 16.2.6 to 16.2.7 #84

name: Automated Tests
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
permissions:
contents: read
jobs:
code-quality:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- run: "echo '🚀 Starting code quality checks for ${{ github.repository }} (ref: ${{ github.ref }})'"
- name: Check out repository code
uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Check spelling
run: node --run test:spelling
- name: Check linting
run: node --run lint
- run: "echo '✨ Code quality checks completed with status: ${{ job.status }}.'"