feat: default blur_active_element and hide_caret to true #476
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| branches: [ master ] | |
| paths: | |
| - '**.rb' | |
| - '**.yml' | |
| - '.github/workflows/lint.yml' | |
| - '!bin/**' | |
| env: | |
| RUBY_YJIT_ENABLE: 1 | |
| jobs: | |
| lint: | |
| name: Ruby & YAML | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '4.0' | |
| bundler-cache: true | |
| - name: Run Standard Ruby linter | |
| run: bin/standardrb --no-fix --fail-fast | |
| - name: Run Yaml linter | |
| run: | | |
| sudo apt-get install --fix-missing -qq --no-install-recommends yamllint | |
| yamllint ./ |