Skip to content

Merge pull request #619 from CDLUC3/feature/add-missing-page-titles #3233

Merge pull request #619 from CDLUC3/feature/add-missing-page-titles

Merge pull request #619 from CDLUC3/feature/add-missing-page-titles #3233

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
eslint:
runs-on: ubuntu-20.04
steps:
# Checkout the repo
- uses: actions/checkout@v2
# Install Node
- uses: actions/setup-node@v2
with:
cache: 'yarn'
node-version: 16
# Run yarn install for JS dependencies
- name: 'Yarn Install'
run: yarn install
- name: 'Run ESLint'
run: yarn run eslint app/javascript/**/*.js --ext .js