Skip to content

Merging Kris' Latest Additions #16

Merging Kris' Latest Additions

Merging Kris' Latest Additions #16

Workflow file for this run

name: Node.js CI Build
# Controls when the workflow will run on any branch
on:
pull_request:
# Define the jobs for this workflow
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run build