alexus888 triggered this workflow. #13
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
run-name: ${{ github.actor }} triggered this workflow. | |
on: [push] | |
jobs: | |
ci-cd: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up environment | |
run: brew install node poetry && npm ci && poetry install | |
- name: Set up "database" | |
run: npm run db & | |
- name: Run the UI | |
run: npm run dev & | |
- name: Run the headless e2e tests | |
run: npm run test-e2e |