fix: Add bold to excludeRangeTypesFromFormatting to fix emoji duplication on web #780
Workflow file for this run
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: Test web E2E | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/web-e2e-test.yml | |
| - src/** | |
| - WebExample/** | |
| merge_group: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/web-e2e-test.yml | |
| - src/** | |
| - WebExample/** | |
| jobs: | |
| test: | |
| if: github.repository == 'Expensify/react-native-live-markdown' | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: web-e2e-test-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| # v5.0.0 | |
| - name: Check out Git repository | |
| uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 | |
| # v6.0.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install node_modules | |
| run: npm ci | |
| - name: Install browsers | |
| run: npx playwright install --with-deps | |
| - name: Install dependencies for browsers | |
| run: npx playwright install-deps | |
| - name: Run Playwright tests | |
| run: npm run test | |
| working-directory: WebExample |