Skip to content

Add the AmandaDiscord org as a sponsor choice #269

Add the AmandaDiscord org as a sponsor choice

Add the AmandaDiscord org as a sponsor choice #269

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- LL-v4
pull_request:
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Restore CI Cache
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn --ignore-scripts
- name: Run ESLint
run: yarn lint