docs(README): remove outdated GitHub Pages setup info #7
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: E2E Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Start server | |
| run: npx http-server ./ -p 8000 --silent & | |
| - name: Wait for server | |
| run: npx wait-on http://localhost:8000 --timeout 60s | |
| - uses: cypress-io/github-action@v4 | |
| with: | |
| config-file: cypress.config.js |