Skip to content

fix: clear fetch error when zip is successfully loaded via drop #9

fix: clear fetch error when zip is successfully loaded via drop

fix: clear fetch error when zip is successfully loaded via drop #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "lts/*"
- run: corepack enable
- run: pnpm i
- run: pnpm lint-check
- run: pnpm exec playwright install chromium --with-deps --no-shell
- run: pnpm test-e2e
- uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-report
path: test-results/
retention-days: 7