Skip to content

chore(deps): update node.js to v24 #48

chore(deps): update node.js to v24

chore(deps): update node.js to v24 #48

name: "Copilot Setup Steps"
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# The job MUST be called 'copilot-setup-steps'
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24'
cache: npm
- run: npm ci
# Optional validations:
- run: npm run build --if-present
- run: npm test --if-present