Refactor watch sources for reliability #704
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: e2e-tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
run-tests: | |
strategy: | |
matrix: | |
os: [macos, ubuntu, windows] | |
fail-fast: false # So it still runs on other OSes if one of them fails | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup node | |
uses: ./.github/actions/setup-node | |
- | |
name: Install dependencies | |
uses: ./.github/actions/npm-install-dependencies | |
- | |
name: Run e2e tests | |
run: npm run test:cy:run |