Stop using a 3rd party eslint action
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 @@
             - 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