Merge branch 'dev' of github.com:Camputron/PulseCheck into dev #228
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: Run Vitest Tests | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Enable Corepack and Install Yarn v4 | |
| run: | | |
| corepack enable | |
| corepack prepare yarn@stable --activate | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Install Playwright | |
| run: yarn playwright install | |
| - name: Run Vitest | |
| run: yarn test |