From d9203f1ae8cdf1fd0f306cab58c7539f0c790683 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 28 May 2026 18:42:07 +0300 Subject: [PATCH] Partially revert "rm lint check for package.json-managed projects" This reverts commit 7eff439fe8bcfb4e79a01eed0cb6023914da5474. --- .github/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c8197b0b85..d7715e8ea2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,6 +32,11 @@ jobs: v=$(grep -oE 'FROM node:[0-9]+\.[0-9]+\.[0-9]+' "$f" | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | sort -u) check "$f" "$v" done + # ENV NODE_VERSION=X.Y.Z — Go images that nvm-install Node for the JS build stage + for f in Dockerfile.embedr; do + v=$(grep -oE 'NODE_VERSION=[0-9]+\.[0-9]+\.[0-9]+' "$f" | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | sort -u) + check "$f" "$v" + done # eas.json "node": "X.Y.Z" v=$(grep -oE '"node":[[:space:]]*"[0-9]+\.[0-9]+\.[0-9]+"' eas.json | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | sort -u) check "eas.json" "$v"