Allow all versions of 0.29 instances to use module #41
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: "[CI] Lint" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| RUBY_VERSION: 3.2.6 | |
| NODE_VERSION: 18.17.1 | |
| jobs: | |
| lint-report: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 1 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ env.RUBY_VERSION }} | |
| bundler-cache: true | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - run: npm ci | |
| name: Install JS deps | |
| - run: bundle exec rubocop -P | |
| name: Lint Ruby files | |
| - run: bundle exec erblint app/**/*.erb | |
| name: Lint ERB files | |
| - run: npm run stylelint | |
| name: Lint SCSS files |