Bump rexml from 3.3.9 to 3.4.2 #87
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: Linters | |
| on: pull_request | |
| env: | |
| FORCE_COLOR: 1 | |
| jobs: | |
| rubocop: | |
| name: Rubocop | |
| runs-on: ubuntu-18.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.1.X | |
| - name: Setup Rubocop | |
| run: | | |
| gem install --no-document rubocop:'~>0.81.0' # https://docs.rubocop.org/en/stable/installation/ | |
| [ -f .rubocop.yml ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/ror/.rubocop.yml | |
| - name: Rubocop Report | |
| run: rubocop --color | |
| stylelint: | |
| name: Stylelint | |
| runs-on: ubuntu-18.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: "12.x" | |
| - name: Setup Stylelint | |
| run: | | |
| npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x | |
| [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/ror/.stylelintrc.json | |
| - name: Stylelint Report | |
| run: npx stylelint "**/*.{css,scss}" |