Skip to content

fix: rename apple-icon -> apple-touch-icon #3326

fix: rename apple-icon -> apple-touch-icon

fix: rename apple-icon -> apple-touch-icon #3326

Workflow file for this run

name: Linting
env:
BUNDLE_WITHOUT: 'test development default'
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # Runs bundle install and caches gems.
- name: Export node version
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- name: Install
run: yarn install
- name: Run prettier
run: yarn prettier --check .
- name: Run lint
run: bundle exec rubocop --extra-details --display-style-guide --parallel
eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Export node version
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- name: Node Information
run: node --version
- name: Install
run: yarn install
- name: Run yarn lint
run: yarn lint