Skip to content

Upgrade Node.js version in CI/CD workflows from 18 to 20 #52

Upgrade Node.js version in CI/CD workflows from 18 to 20

Upgrade Node.js version in CI/CD workflows from 18 to 20 #52

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: npm ci
- name: Audit Production Dependencies
run: npm audit --omit=dev
- name: Run Tests
run: npm test