From 486ca396f33cf0bc03e32926027e4c6917166bd7 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 18 Sep 2024 20:59:00 +0200 Subject: [PATCH] feat(ci): switch to containerized CI workflow Updated CI workflow to use a container image based on `node:20-bookworm` instead of running on `ubuntu-latest`. This change ensures a consistent and controlled environment, potentially reducing build inconsistencies and improving maintenance. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de538915..046478c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,8 @@ on: jobs: build: - - runs-on: ubuntu-latest + container: + image: node:20-bookworm name: "build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }}"