Skip to content

Commit 05cb748

Browse files
committed
fix(build): Use Node 14 in "Size Check" job to fix CI runs on master
1 parent 3e07e20 commit 05cb748

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ jobs:
187187
- name: Set up Node
188188
uses: actions/setup-node@v1
189189
with:
190-
node-version: ${{ env.DEFAULT_NODE_VERSION }}
190+
# The size limit action runs `yarn` and `yarn build` when this job is executed on
191+
# `master`. We can't change this without making changes to the action, so we'll
192+
# use Node 14 for now.
193+
node-version: '14'
191194
- name: Check dependency cache
192195
uses: actions/cache@v2
193196
with:

0 commit comments

Comments
 (0)