diff options
| author | Uri Shaked | 2026-02-14 19:29:34 +0200 |
|---|---|---|
| committer | Uri Shaked | 2026-02-14 19:29:34 +0200 |
| commit | fd43c44791316f8e9728b2af9cc665b7c9fde864 (patch) | |
| tree | cde5b92e946fc2e945a29e15145d2822237be52e /.github/workflows/ci.yml | |
| parent | style: organize imports (diff) | |
| download | avr8js-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 '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
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 |
