From 05cb748bdaba970eacf40b62405090688eeac7bc Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 28 Jun 2022 11:42:57 +0200 Subject: [PATCH] fix(build): Use Node 14 in "Size Check" job to fix CI runs on master --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26643c62c3a1..a1f92c58b957 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -187,7 +187,10 @@ jobs: - name: Set up Node uses: actions/setup-node@v1 with: - node-version: ${{ env.DEFAULT_NODE_VERSION }} + # The size limit action runs `yarn` and `yarn build` when this job is executed on + # `master`. We can't change this without making changes to the action, so we'll + # use Node 14 for now. + node-version: '14' - name: Check dependency cache uses: actions/cache@v2 with: