fix/met 2392 remove unneeded boxes token details #1082
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 Tests | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: [arc-runner-set] | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@v3 | |
- name: 🫡 Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: 🧘♀️ Download dependencies | |
run: npm ci | |
- name: 🎳 Run tests | |
run: npm run test |