mirror of
https://github.com/Kong/insomnia.git
synced 2026-01-30 08:43:10 -05:00
* Move vault related UI code * Support bundle plugin for app & inso and backend integration (#8857) * Update Github actions * spike: bundle plugin installation alternatives (#8899) * installation alternative by optional dependency * Refine plugins api * feat: Execute vault plugin tag in web worker (#8934) * update bundle test * fix issues from comment --------- Co-authored-by: jackkav <jackkav@gmail.com>
53 lines
1.3 KiB
YAML
53 lines
1.3 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: 40
|
|
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
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
scope: '@kong'
|
|
|
|
- name: Install packages
|
|
run: npm ci
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- 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
|