feat: Configure global undici dispatcher #149
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
name: End-to-end tests | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "Install dependencies" | |
uses: ./.github/workflows/install-deps | |
- name: "Install playwright" | |
uses: ./.github/workflows/install-playwright | |
- name: Compile locales | |
run: yarn run lingui compile | |
- name: Create fake wiki content | |
run: echo "[]" > src/wiki-content.json | |
- name: Lint | |
run: yarn run lint | |
- name: Typecheck | |
run: yarn run typecheck | |
- name: Unit tests | |
run: yarn run test | |
- name: E2E tests | |
run: yarn run e2e |