chore: use comment nodes for VFragment bookends #85
Workflow file for this run
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: Run Karma integration tests | |
on: | |
push: | |
branches: | |
- master | |
- release | |
- 'spring*' | |
- 'summer*' | |
- 'winter*' | |
pull_request: | |
branches: | |
- master | |
- release | |
- 'spring*' | |
- 'summer*' | |
- 'winter*' | |
env: | |
SAUCE_USERNAME: ${{secrets.SAUCE_USERNAME}} | |
SAUCE_ACCESS_KEY: ${{secrets.SAUCE_ACCESS_KEY}} | |
SAUCE_TUNNEL_ID: github-action-tunnel-integration-${{github.run_id}} | |
PUPPETEER_SKIP_DOWNLOAD: "true" # only needed for @best/runner-local, unused here | |
COVERAGE: "1" | |
jobs: | |
run-karma-tests: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: ./packages/@lwc/integration-karma | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.18.0" | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
working-directory: ./ | |
- uses: saucelabs/sauce-connect-action@v2 | |
with: | |
username: ${{ secrets.SAUCE_USERNAME }} | |
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }} | |
tunnelName: ${{ env.SAUCE_TUNNEL_ID }} | |
- run: yarn sauce:ci | |
- run: DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: LEGACY_BROWSERS=1 yarn sauce:ci | |
- run: FORCE_NATIVE_SHADOW_MODE_FOR_TEST=1 yarn sauce:ci | |
- run: ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 yarn sauce:ci | |
- run: ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: API_VERSION=58 yarn sauce:ci | |
- run: API_VERSION=58 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: API_VERSION=59 yarn sauce:ci | |
- run: API_VERSION=59 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: ENABLE_ARIA_REFLECTION_GLOBAL_POLYFILL=1 yarn sauce:ci | |
- run: ENABLE_ARIA_REFLECTION_GLOBAL_POLYFILL=1 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: DISABLE_SYNTHETIC_SHADOW_SUPPORT_IN_COMPILER=1 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: DISABLE_STATIC_CONTENT_OPTIMIZATION=1 yarn sauce:ci | |
- run: DISABLE_STATIC_CONTENT_OPTIMIZATION=1 DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: NODE_ENV_FOR_TEST=production yarn sauce:ci | |
- run: NODE_ENV_FOR_TEST=production DISABLE_SYNTHETIC=1 yarn sauce:ci | |
- run: yarn hydration:sauce:ci | |
- run: yarn coverage |