Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz committed Jan 24, 2024
1 parent a5ee8af commit b16534a
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,20 @@ on:
pull_request:
push:
branches:
- main
- debug-zq-test
workflow_dispatch:

jobs:
build:
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

0 comments on commit b16534a

Please sign in to comment.