From 075a8849dd88744096763d752febe53e538d9072 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Sun, 19 Oct 2025 15:20:57 +0300 Subject: [PATCH] ci: execute CI pipeline inside of special Docker container supporting e2e testing #3 --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e645a27..964939a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,16 +10,14 @@ on: jobs: Build: runs-on: ubuntu-latest + container: + image: ghcr.io/${{ github.repository }}/ci-runner:node-22-trixie-slim steps: - uses: actions/checkout@v5 with: fetch-depth: 1 - name: Install pnpm uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v5 - with: - node-version: '22' - package-manager-cache: false - name: Environment details run: pnpm version - name: Install dependencies