FEAT: ui-state match #197
Workflow file for this run
This file contains hidden or 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: π§ͺ Tests | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
- staging | |
- ivan/restart # TODO remove me on final merge on main | |
pull_request: | |
jobs: | |
tests: | |
timeout-minutes: 10 | |
name: βοΈ Components Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 10 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run unit tests | |
run: pnpm run test:ci |