fix extension memory leak #2
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: main-workflow | |
on: push | |
jobs: | |
# run-e2e-macos: | |
# name: run-e2e-macos | |
# runs-on: macos-latest | |
# env: | |
# CI_MAC_OS: true | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: oven-sh/setup-bun@v1 | |
# - run: bun install | |
# - name: 'Run test' | |
# working-directory: e2e-tests/interface-tests-playwright | |
# run: | | |
# npx playwright install | |
# npx playwright test --project=webkit-mapbox | |
# - name: 'XX' | |
# working-directory: e2e-tests/interface-tests-playwright | |
# run: aws s3 cp src/tests s3://mapgrab/ --recursive | |
# - name: Archive production artifacts | |
# if: failure() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: dist-without-markdown | |
# path: | | |
# e2e-tests/interface-tests-playwright/src/tests | |
# run-e2e: | |
# name: run-e2e | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: | |
# token: ${{ secrets.SUBMODULE_TOKEN }} | |
# submodules: true | |
# - uses: pnpm/action-setup@v4 | |
# with: | |
# version: 9 | |
# - run: pnpm install | |
# - run: pnpm nx e2e interface-tests-playwright --skip-nx-cache | |
# - name: Archive production artifacts | |
# if: failure() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: dist-without-markdown | |
# path: | | |
# e2e-tests/interface-tests-playwright/src/tests |