build(deps-dev): bump @types/chrome from 0.1.30 to 0.1.31 #283
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: End-to-end tests CI | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Test using Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "v22" | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Setup e2e environment | |
| run: bash script/setup-e2e.sh --all | |
| - name: Start test servers | |
| run: bash script/setup-e2e.sh --start-servers | |
| - name: Run tests | |
| env: | |
| USE_HEADLESS_PUPPETEER: true | |
| run: npm run test-e2e | |
| - name: Tests ✅ | |
| if: ${{ success() }} | |
| run: | | |
| curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ | |
| "context": "tests", | |
| "state": "success", | |
| "description": "Tests passed", | |
| "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
| }' | |
| - name: Tests 🚨 | |
| if: ${{ failure() }} | |
| run: | | |
| curl --request POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' --header 'content-type: application/json' --data '{ | |
| "context": "tests", | |
| "state": "failure", | |
| "description": "Tests failed", | |
| "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
| } |