aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorUri Shaked2026-02-14 19:29:34 +0200
committerUri Shaked2026-02-14 19:29:34 +0200
commitfd43c44791316f8e9728b2af9cc665b7c9fde864 (patch)
treecde5b92e946fc2e945a29e15145d2822237be52e /.github/workflows
parentstyle: organize imports (diff)
downloadavr8js-fd43c44791316f8e9728b2af9cc665b7c9fde864.tar.gz
avr8js-fd43c44791316f8e9728b2af9cc665b7c9fde864.tar.bz2
avr8js-fd43c44791316f8e9728b2af9cc665b7c9fde864.zip
ci: remove node 18
It reached EOL. Also set fail-fast to false.
Diffstat (limited to '')
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5ac0da2..36b2c54 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -8,8 +8,9 @@ jobs:
build:
runs-on: ubuntu-24.04
strategy:
+ fail-fast: false
matrix:
- node: ['24', '22', '20', '18']
+ node: ['24', '22', '20']
name: Node ${{ matrix.node }} CI
steps:
- uses: actions/checkout@v4