Merge pull request #350 from 10up/feature/update-optional-component-r… #983
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Test Suite | |
on: [push, workflow_dispatch] | |
jobs: | |
jest: | |
name: Jest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install NPM Dependencies | |
run: npm ci | |
- name: Run Unit Tests | |
run: npm test |