Merge pull request #1192 from diowa/dependabot/npm_and_yarn/babel-bfa… #1140
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: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '2.6.10' | |
| bundler-cache: true | |
| - name: Set up Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '16' | |
| cache: 'yarn' | |
| - name: Yarn | |
| run: yarn | |
| - name: Run lints | |
| run: bundle exec rake lint |