aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorUri Shaked2021-10-21 19:54:38 +0300
committerUri Shaked2021-10-21 19:54:38 +0300
commit2c1aef1b9da6aca3cfd60e26535be92bbdc058b5 (patch)
tree974291195ffb3b87bce3fe8866984ba8d824d947 /.github/workflows/ci.yml
parentfix: broken build on node < 16 (diff)
downloadavr8js-2c1aef1b9da6aca3cfd60e26535be92bbdc058b5.tar.gz
avr8js-2c1aef1b9da6aca3cfd60e26535be92bbdc058b5.tar.bz2
avr8js-2c1aef1b9da6aca3cfd60e26535be92bbdc058b5.zip
chore: add node 16 to CI test matrix
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5ab5647..3344fa2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- node: [ '14', '12', '10' ]
+ node: [ '16', '14', '12', '10' ]
name: Node ${{ matrix.node }} CI
steps:
- uses: actions/checkout@v1