Skip to content

Add unit tests GitHub Action config #3

Add unit tests GitHub Action config

Add unit tests GitHub Action config #3

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yml
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/download-artifact
with:
name: dist-front_end
path: out/Default/gen/front_end
- name: Run unit tests
run: npm run unittest -- --expanded-reportin