Files
insomnia/.github/workflows/test-e2e.yml
Jay Wu 8c7d83ff36 chore(publish): fix publish broken issues (#85)
* chore(publish): fix publish broken issues

1. Create a draft release in the ce repo
2. Upload sourcemaps to Sentry

* fix publish error

1. add --generate-notes
2. add create-draft-release
3. disable merging of the release branch

* clean up

* increase timeout-minutes from 15 to 30

* create the pr automatically

* git push with PAT

* create pull request
2025-04-28 14:45:18 +08:00

49 lines
1.1 KiB
YAML

name: e2e App Tests
on:
merge_group:
workflow_dispatch:
push:
branches:
- develop
pull_request:
types:
- opened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Test:
timeout-minutes: 30
runs-on: ubuntu-22.04
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Install packages
run: npm ci
- name: Build app for smoke tests
run: NODE_OPTIONS='--max_old_space_size=6144' npm run app-build
- name: Smoke test electron app
run: npm run test:build -w packages/insomnia-smoke-test -- --project=Smoke
- name: Upload smoke test
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
if-no-files-found: ignore
name: ubuntu-smoke-test-traces-${{ github.run_number }}
path: packages/insomnia-smoke-test/traces