upgrade Zed to 6ff05865e0d6dcdc68481b32e6d76fc8d45ef7e2 #6911
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zui CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-20.04, windows-2019] | |
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 |