Skip to content

✨ all components working well #163

✨ all components working well

✨ all components working well #163

Workflow file for this run

name: Lint Javascript
on:
push:
branches-ignore:
- staging
- production
paths:
- "client/**"
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn
- name: Build
run: yarn build
- name: Run Eslint
run: yarn lint