Skip to content

intentionally fail a unit test #3

intentionally fail a unit test

intentionally fail a unit test #3

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
# Manual Checkout
- uses: actions/checkout@v3
# Set up Node
- uses: actions/setup-node@v3
with:
node-version: '18.x'
# Run Tests
- run: yarn install
- run: yarn test