mirror of
https://github.com/jhen0409/react-native-debugger.git
synced 2026-03-27 08:21:12 +00:00
* Initial work of upgrade apollo-client-devtools * Add prefix for all message types of apollo-client-devtools by patch * Middleware: Handle `ac-devtools:` prefix messages * Worker: Import devtools hook also add some patch to apollo-client-devtools: - Remove content script (it was attached to RNDebugger window) - No second arg on postMessage * Add apollo-client example * Fix tests * E2E: Take screenshot after each & upload artifacts on CI failed * E2E: Take devtools window screenshot * Fix typo in removeEventListener * Add test case for apollo-client-devtools
82 lines
2.1 KiB
YAML
82 lines
2.1 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-test-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18.x
|
|
cache: 'yarn'
|
|
- name: Setup
|
|
run: sudo apt-get install -y libgbm-dev
|
|
- name: Test
|
|
id: test
|
|
run: |
|
|
yarn
|
|
cd npm-package && yarn && cd ..
|
|
yarn test
|
|
yarn build
|
|
xvfb-run --auto-servernum yarn test-e2e
|
|
- name: Upload artifacts on failure
|
|
if: ${{ failure() && steps.test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts
|
|
path: artifacts
|
|
retention-days: 1
|
|
build-test-macos:
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18.x
|
|
cache: 'yarn'
|
|
- name: Test
|
|
id: test
|
|
run: |
|
|
yarn
|
|
cd npm-package && yarn && cd ..
|
|
yarn test
|
|
yarn build
|
|
yarn test-e2e
|
|
- name: Upload artifacts on failure
|
|
if: ${{ failure() && steps.test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts
|
|
path: artifacts
|
|
retention-days: 1
|
|
build-test-windows:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18.x
|
|
cache: 'yarn'
|
|
- name: Test
|
|
id: test
|
|
shell: bash
|
|
run: |
|
|
yarn config set network-timeout 500000 -g
|
|
yarn
|
|
cd npm-package && yarn && cd ..
|
|
yarn build
|
|
yarn test
|
|
yarn test-e2e
|
|
- name: Upload artifacts on failure
|
|
if: ${{ failure() && steps.test.conclusion == 'failure' }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts
|
|
path: artifacts
|
|
retention-days: 1 |