Fix the broken CI (#1317)

Apparently when GitHub Actions can't parse a file, it doesn't indicate
that as a failure on a PR!
This commit is contained in:
Natalie Weizenbaum 2021-05-20 17:43:01 -07:00 committed by GitHub
parent ba805f1039
commit 112aaa6aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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