chore: remove DB_FILE path logging from server startup #57
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: Playwright Tests | |
| on: | |
| push: | |
| branches: [main, update-tests] | |
| pull_request: | |
| branches: [main, update-tests] | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright | |
| run: npx playwright install --with-deps | |
| - name: Start the app | |
| run: | | |
| npm run start & | |
| npx wait-on http://localhost:3000 | |
| - name: Run tests with Allure reporter | |
| run: npm run test:allure | |
| env: | |
| BASE_URL: http://localhost:3000 | |
| - name: Generate Allure report | |
| run: npm run allure:generate |