From 93a31c3843df8a54deaade4e3f8f2f854c28abc2 Mon Sep 17 00:00:00 2001 From: axolotle Date: Sat, 2 Mar 2024 17:35:47 +0100 Subject: [PATCH] chore: update .github with yarn --- .github/workflows/eslint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index e8f40362..40367209 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Install npm dependencies - run: cd app && npm ci + - name: Install yarn dependencies + run: cd app && yarn install --frozen-lockfile - name: Run linter - run: cd app && npm run lint + run: cd app && yarn lint