From e0db2ec48c9278e7898286420f8609716ff3c442 Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Sun, 5 Mar 2023 10:02:18 +0000 Subject: [PATCH] Stop using a 3rd party eslint action --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index beee7fe..8135066 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,10 +21,10 @@ jobs: - uses: actions/setup-node@v3.6.0 with: node-version: 19.x - - run: yarn install --immutable --ignore-engines + - run: yarn install --immutable - name: Compile run: yarn build - name: Run eslint - uses: mrdivyansh/eslint-action@v1.0.7 + run: yarn lint - name: Run prettier uses: actionsx/prettier@v2