fix(popup): allow build progress to use full width (closes #47, close… #25
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: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v3 | |
- name: Install Please | |
run: curl https://get.please.build | bash && echo ~/.please >> $GITHUB_PATH | |
- name: Run tests | |
run: plz test | |
lint-docs: | |
name: Lint Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v3 | |
- name: Install Please | |
run: curl https://get.please.build | bash && echo ~/.please >> $GITHUB_PATH | |
- name: Check if help file needs regenerating | |
run: plz run //:please_help_gen_check | |
lint-lua: | |
name: Lint Lua | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v3 | |
- name: Lint with Stylua | |
uses: JohnnyMorganz/stylua-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: 0.14.1 | |
args: --check --color always . | |
lint-build: | |
name: Lint BUILD | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v3 | |
- name: Install Please | |
run: curl https://get.please.build | bash && echo ~/.please >> $GITHUB_PATH | |
- name: Lint with plz format | |
run: | | |
plz format --write | |
if ! git diff --quiet; then | |
echo 'The following files need to be formatted with "plz format --write"': | |
git --no-pager diff --name-only | |
exit 1 | |
fi |