feat(alacritty): don't use builtin box drawing #290
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: smoke-test | |
on: [push] | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
# firefox: # TODO: get github actions to work without x server | |
# - "latest-beta" | |
# - "latest-devedition" | |
# - "latest-nightly" | |
# - "latest-esr" | |
# - "latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stow (linux) | |
run: sudo apt-get install -y stow firefox | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- uses: Homebrew/actions/setup-homebrew@master | |
if: ${{ matrix.os == 'macos-latest' }} | |
- name: Install stow (macos) | |
run: brew install stow firefox | |
if: ${{ matrix.os == 'macos-latest' }} | |
# - name: Setup firefox (${{ matrix.firefox }}) | |
# uses: browser-actions/setup-firefox@v1 | |
# with: | |
# firefox-version: ${{ matrix.firefox }} | |
- name: Run install script | |
run: ./install.sh |