diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-07-21 18:48:25 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-07-21 18:48:25 +0100 |
commit | 82309771c53d6cff95aed403496b5c13584148eb (patch) | |
tree | ec0d0c229fc6645912bd1cd98fbe2bd7aca19b0c /.github | |
parent | 733032f0d8570913f41ccf9498fe82301f2eadc6 (diff) | |
download | gleam_stdlib-82309771c53d6cff95aed403496b5c13584148eb.tar.gz gleam_stdlib-82309771c53d6cff95aed403496b5c13584148eb.zip |
Install recent node version on CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3bc5d5..bf5916a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,8 @@ name: CI on: push: branches: - - 'main' - - 'v*.*.*' + - "main" + - "v*.*.*" pull_request: jobs: @@ -14,7 +14,10 @@ jobs: - uses: actions/checkout@v2.0.0 - uses: gleam-lang/setup-erlang@v1.1.2 with: - otp-version: 23.2 + otp-version: "23.2" + - uses: actions/setup-node@v2 + with: + node-version: "16" - uses: gleam-lang/setup-gleam@v1.0.1 with: gleam-version: "ref:main" |