From baac17eeff83ca0a434fae941fc05145f5f2d7ea Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Mon, 23 Mar 2026 15:39:05 +0100 Subject: [PATCH] try to manually install node on -erlang image --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de56916..3612a84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,8 +10,11 @@ jobs: name: Run Tests runs-on: docker container: - image: ghcr.io/gleam-lang/gleam:v1.15.2-elixir + image: ghcr.io/gleam-lang/gleam:v1.15.2-erlang steps: + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs npm + - name: Checkout code uses: actions/checkout@v4