Skip to content

Commit

Permalink
Type coercion round 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Jul 6, 2023
1 parent 081586f commit 05f967d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/plugins-ci-mongo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ jobs:
permissions:
contents: read
strategy:
fail-fast: >
inputs.fail-fast
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
matrix:
node-version: [14, 16, 18, 20]
os: [ubuntu-latest]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/plugins-ci-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ jobs:
permissions:
contents: read
strategy:
fail-fast: >
inputs.fail-fast
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
matrix:
node-version: [14, 16, 18, 20]
os: [ubuntu-latest]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/plugins-ci-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ jobs:
permissions:
contents: read
strategy:
fail-fast: >
inputs.fail-fast
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
matrix:
node-version: [14, 16, 18, 20]
os: [ubuntu-latest]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/plugins-ci-redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ jobs:
name: Node.js ${{ matrix.node-version }} - ${{ matrix.db }}
runs-on: ubuntu-latest
strategy:
fail-fast: >
inputs.fail-fast
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
matrix:
node-version: [14, 16, 18, 20]
db: [5, 6, 7]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/plugins-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ jobs:
permissions:
contents: read
strategy:
fail-fast: >
inputs.fail-fast
fail-fast: ${{ fromJSON(inputs.fail-fast) }}
matrix:
node-version: [14, 16, 18, 20]
os: [macos-latest, ubuntu-latest, windows-latest]
Expand Down

0 comments on commit 05f967d

Please sign in to comment.