From e87888dfc23f20a4459a3022449a806c87331e14 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Thu, 20 May 2021 17:09:45 -0700 Subject: [PATCH] Fix the broken CI Apparently when GitHub Actions can't parse a file, it doesn't indicate that as a failure on a PR! --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7932f81f0..dbb928afd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,8 @@ name: CI env: # Run on Node 14 because node-fibers doesn't support odd-numbered Node # versions. Note: when changing this, also change - # jobs.node_tests.strategy.matrix.node_version. + # jobs.node_tests.strategy.matrix.node_version and the Node version for Dart + # dev tests. DEFAULT_NODE_VERSION: 14 on: @@ -99,7 +100,7 @@ jobs: node_version: 10 - os: ubuntu-latest dart_channel: dev - node_version: "${{ env.DEFAULT_NODE_VERSION }}" + node_version: 14 steps: - uses: actions/checkout@v2