Skip to content

first pass at running tests in CI #1

first pass at running tests in CI

first pass at running tests in CI #1

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
- name: Execute Unit Tests
- run: yarn install

Check failure on line 31 in .github/workflows/run-tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yaml

Invalid workflow file

You have an error in your yaml syntax on line 31
- run: yarn test