Skip to content

Merge pull request #170 from uclaacm/order-events #295

Merge pull request #170 from uclaacm/order-events

Merge pull request #170 from uclaacm/order-events #295

Workflow file for this run

name: Prettier Linting
on:
push:
branches:
- "main"
pull_request:
types: [opened, reopened]
jobs:
run-linters:
name: Run Linters
runs-on: ubuntu-latest
steps:
- name: Checkout Git repo
uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: yarn install
- name: Run check linters
run: yarn lint