Skip to content

Upgrade to Node 24 #673

Upgrade to Node 24

Upgrade to Node 24 #673

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
action-only-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Action-only tests
run: npm run test:actionorga
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}