From a1461fffde3a8643490dbabc4471eca1204a886f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 4 May 2025 11:09:59 +0300 Subject: [PATCH] fix(ci): docker-main not building due to use of npm --- .github/workflows/main-docker.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main-docker.yml b/.github/workflows/main-docker.yml index b13fd9ffc..a7bf9f557 100644 --- a/.github/workflows/main-docker.yml +++ b/.github/workflows/main-docker.yml @@ -132,12 +132,18 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - name: Set up node & dependencies + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile - name: Update build info - run: npm run chore:update-build-info + run: pnpm run chore:update-build-info - name: Docker meta id: meta