mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-19 21:57:13 -04:00
* simplify out tough-cookie * remove fs from vite config * bridge fs os and decode * polyfill crypto and uuid * replace node:url * remove require interceptor * bridge jsonpath * disable node in worker * fix elevated extension * remove spectral optimzation * abstract and type db router * complete abstraction * add info about dev deps * revert encode url * fix and extend tests * use jsonpath-plus import esm * fix type check * hide the openapi spam * rename readFile * optimise import * fix md5 test * speed up grpc test * fix grpc test * use global timeout * fix lint * fix tests * fix types * complete os support * fix test * update nodeOS
49 lines
1.1 KiB
YAML
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: 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
|
|
|
|
- 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
|