Skip to content

Workflow file for this run

# name: Linters
# on: pull_request
# env:
# FORCE_COLOR: 1
# jobs:
# eslint:
# name: ESLint
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: "12.x"
# - name: Setup ESLint
# run: |
# npm install --save-dev [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected]
# [ -f .eslintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.eslintrc.json
# [ -f .babelrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.babelrc
# - name: ESLint Report
# run: npx eslint . --fix
# 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 [email protected] [email protected] [email protected] [email protected]
# [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.stylelintrc.json
# - name: Stylelint Report
# run: npx stylelint "**/*.{css,scss}" --fix
# nodechecker:
# name: node_modules checker
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# - name: Check node_modules existence
# run: |
# if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi