Skip to content

Commit

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

0 comments on commit 081586f

Please sign in to comment.