Skip to content

Merge branch 'dev'

Merge branch 'dev' #61

Workflow file for this run

name: Tests
# on: [push]
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
# Checks-out the repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Install Node Js
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# Install Node Modules
- name: Install Node Modules
run: npm install
# Runs a set of commands using the runners shell
- name: Build typescript code
run: npm run build
# Runs a set of commands using the runners shell
- name: Runs Unit Tests
run: npm run test