Merge pull request #2123 from cardano-foundation/feature/MET-1673-Rew… #7523
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: | |
branches-ignore: | |
- "main" | |
pull_request: | |
branches-ignore: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: self-hosted | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@v3 | |
- name: 🫡 Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: 🧘♀️ Download dependencies | |
run: npm ci | |
- name: 🎳 Run tests | |
run: npm run test:jest:ci |