chore: change tab-title unseen_icon to circle + fix comments #66
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: lint | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check formatting | |
uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: 0.19.1 | |
args: -g '!/config/init.lua' --check wezterm.lua colors/ config/ events/ utils/ | |
- name: Lint | |
uses: lunarmodules/luacheck@v1 | |
with: | |
args: wezterm.lua colors/* config/* events/* utils/* |