From b16534a4283cfb29fd7a1e8fc39d98000c0d9fe6 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Wed, 24 Jan 2024 13:17:45 -0800 Subject: [PATCH] wip --- .github/workflows/ci.yml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6799e9d84a..b610dbc8b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: pull_request: push: branches: - - main + - debug-zq-test workflow_dispatch: jobs: @@ -12,22 +12,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-12, ubuntu-20.04, windows-2019] + os: [macos-12] steps: - run: git config --global core.autocrlf false - uses: actions/checkout@v3 - uses: ./.github/actions/setup-zui - - run: yarn lint - - run: yarn test - - name: Build and install package - if: runner.os != 'Windows' - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - set -x - case ${{ runner.os }} in - Linux ) - yarn nx package-zui zui --linux=deb --publish never - sudo apt install -y --no-install-recommends ./dist/apps/zui/*.deb - ;; - esac + - run: | + while true; do + nx run zed-node:test + done