Skip to content

Bump the eslint group across 1 directory with 3 updates #414

Bump the eslint group across 1 directory with 3 updates

Bump the eslint group across 1 directory with 3 updates #414

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.yarn
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: yarn-
- name: Install modules
run: yarn install
- name: ESLint
run: ./node_modules/.bin/eslint '**/*.ts' --fix
- name: Prettier
run: ./node_modules/.bin/prettier --check .