Skip to content

chore(deps-dev): bump globals from 17.4.0 to 17.5.0 #304

chore(deps-dev): bump globals from 17.4.0 to 17.5.0

chore(deps-dev): bump globals from 17.4.0 to 17.5.0 #304

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run formatting check
run: npm run format:check
- name: Run tests
run: npm test
- name: Package the action
run: npm run package
- name: Validate action.yml
run: |
# Basic validation that action.yml is valid YAML
if command -v yq &> /dev/null; then
yq eval '.' action.yml > /dev/null
else
# Fallback to python yaml check
python -c "import yaml; yaml.safe_load(open('action.yml'))"
fi
- name: Check npm version compatibility
uses: joshjohanning/npm-version-check-action@v2