Skip to content

Fix missing script call #5

Fix missing script call

Fix missing script call #5

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- production
workflow_call:
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run Tests
run: npm run test
- name: Run Test Coverage
id: coverage
run: npm run coverage