fix: remove duplicate hidden window creation from scheduled task fron… #1625
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: [] | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: macos-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: 📥 Checkout code | |
| uses: actions/checkout@v6 | |
| - name: 🧰 Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: 📦 Install dependencies | |
| run: bun ci | |
| - name: 🧪 Run all tests | |
| run: bun test:all | |
| env: | |
| PUPPETEER_EXECUTABLE_PATH: /Applications/Google Chrome.app/Contents/MacOS/Google Chrome |