From 7f8fd533e79c1cc79dae1bb90549083deeb3c0eb Mon Sep 17 00:00:00 2001 From: cnrad Date: Thu, 14 Nov 2024 13:37:52 -0500 Subject: [PATCH] chore: update workflow --- .github/workflows/lint.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6ff29e5..f41141d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,19 +7,19 @@ jobs: steps: - name: Checkout project - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: clean: false - - name: Use Node.js 14 - uses: actions/setup-node@v1 + - name: Use Node.js 20 + uses: actions/setup-node@v4 with: - node-version: 14.x + node-version: 20.x - name: Install deps - run: yarn + run: pnpm i - name: Run ESLint - run: yarn lint + run: pnpm lint env: CI: true