From e269286ec0c4ac0f2923b0c39944e23e23d2095e Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Fri, 26 Jan 2024 14:00:39 +0100 Subject: [PATCH] Disable run-latest-node job for now We're still using an old version of Storybook that works fine, but uses Webpack v4, which is no longer supported in latest Node. We should update, but it's not important from a runtime perspective at all, so we can ignore it for a while to get the build working first. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9870b84..b5e98e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x, '*'] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2