Skip to content

fix incorrect week numbers for undergrad calendar #4

fix incorrect week numbers for undergrad calendar

fix incorrect week numbers for undergrad calendar #4

Workflow file for this run

name: Run Unit Tests against a Pull Request
on:
pull_request:
jobs:
test:
name: Test the application
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: npm install
- name: Run tests
run: npm run test