Skip to content

chore: update Node.js version in GitHub Actions workflow to 20 #88

chore: update Node.js version in GitHub Actions workflow to 20

chore: update Node.js version in GitHub Actions workflow to 20 #88

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
container:
image: node:20
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run Vitest Suite
run: npm test