chore(deps): bump amannn/action-semantic-pull-request from e32d7e603df1aa1ba07e981f2a23455dee596825 to 80c0371c57c5142ed6c844270bba1864bac8a4c6 #664
Workflow file for this run
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 Jest Tests | |
on: | |
- push | |
- workflow_dispatch | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Jest Tests | |
run: npm test |