From ca3b9bfb09b7247ab8dd1ebfb537d7b0af5c0e71 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 28 Mar 2024 16:25:53 +0530 Subject: [PATCH] chore(actions): install deps & tools before lint --- .github/workflows/ci.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46b5879..51694bf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,6 +67,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Install PNPM + uses: pnpm/action-setup@v3 + + - name: Install Node + uses: actions/setup-node@v4.0.2 + with: + cache: 'pnpm' + + - name: Install dependencies + run: pnpm i + - name: Install tooling uses: ok-nick/setup-aftman@v0.4.2 @@ -78,5 +89,3 @@ jobs: - name: Lint run: pnpm lint - -