add extra menu #231
Workflow file for this run
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: | |
- main | |
- staging | |
pull_request: | |
env: | |
RUBY_VERSION: 3.0.6 | |
NODE_VERSION: 16.9.1 | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-20.04 | |
if: "!startsWith(github.head_ref, 'chore/l10n')" | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@master | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- run: npm ci | |
name: Install JS deps | |
- run: npm run lint | |
name: Lint JS files | |
- run: npm run stylelint | |
name: Lint SCSS files | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
bundler-cache: true | |
- run: bundle exec rubocop -P | |
name: Lint Ruby files | |
- run: bundle exec mdl *.md | |
name: Lint Markdown files | |
- run: bundle exec erblint app/views/**/*.erb | |
name: Lint ERB files |