Skip to content

Commit

Permalink
ci(exist-version): latest version is experimental
Browse files Browse the repository at this point in the history
Since the latest version of existdb might contain breaking changes
it will abort the tests on other versions when it fails.
Marking it as experimental allows us to see when
it fails without sacrificing the builds on versions
that we will ensure compatibility with.
  • Loading branch information
line-o committed Jul 13, 2023
1 parent ff8b51c commit 888de1b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
exist-version: [latest, release, 5.5.1]
exist-version: [release, 6.0.1, 5.5.1]
experimental: [false]
# latest might contain breaking changes
include:
- exist-version: latest
experimental: true
services:
exist:
image: existdb/existdb:${{ matrix.exist-version }}
Expand Down

0 comments on commit 888de1b

Please sign in to comment.