Merge pull request #100 from serenity-kit/upgrade-to-react-native-83 #149
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 Web | |
| on: [push] | |
| jobs: | |
| test: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20.20.0 | |
| - name: Install node_modules | |
| run: yarn install --frozen-lockfile | |
| - name: Install node_modules for example/ | |
| run: yarn install --frozen-lockfile --cwd example | |
| - name: Install Playwright | |
| run: npx playwright install --with-deps | |
| - name: Run e2e tests | |
| run: yarn test:e2e:web | |
| - uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |