Add workaround for p10k resizing issue on VS Code #772
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: ci | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
variant: [devcontainer, wsl, gnome] | |
os: [ubuntu-20.04, ubuntu-22.04] | |
include: | |
- variant: devcontainer | |
os: alpine | |
- variant: devcontainer | |
os: debian | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
scripts/test.sh --variant "${{ matrix.variant }}" --os "${{ matrix.os }}" |