mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-04-25 09:52:12 +00:00
chore(ci): Set timeout and add e2e / status
check [fixes FLU-222, FLU-194 and FLU-196] (#238)
* Update renovate config * Update
This commit is contained in:
parent
bbf617f900
commit
e02c506d7f
14
.github/renovate.json
vendored
14
.github/renovate.json
vendored
@ -6,10 +6,22 @@
|
|||||||
],
|
],
|
||||||
"enabledManagers": ["npm", "github-actions"],
|
"enabledManagers": ["npm", "github-actions"],
|
||||||
"rangeStrategy": "pin",
|
"rangeStrategy": "pin",
|
||||||
|
"schedule": "every weekend",
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchManagers": ["npm"],
|
||||||
|
"matchPackagePatterns": [
|
||||||
|
"@fluencelabs/.*"
|
||||||
|
],
|
||||||
|
"semanticCommitType": "fix",
|
||||||
|
"semanticCommitScope": "deps",
|
||||||
|
"schedule": "at any time"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"matchDepTypes": ["devDependencies"],
|
"matchDepTypes": ["devDependencies"],
|
||||||
"prPriority": -1
|
"prPriority": -1,
|
||||||
|
"semanticCommitType": "chore",
|
||||||
|
"semanticCommitScope": "deps"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchUpdateTypes": ["major"],
|
"matchUpdateTypes": ["major"],
|
||||||
|
25
.github/workflows/e2e.yml
vendored
25
.github/workflows/e2e.yml
vendored
@ -59,3 +59,28 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|
||||||
fluence-js-version: "${{ needs.fluence-js.outputs.fluence-js-version }}"
|
fluence-js-version: "${{ needs.fluence-js.outputs.fluence-js-version }}"
|
||||||
|
|
||||||
|
status:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: always()
|
||||||
|
needs:
|
||||||
|
- fluence-cli
|
||||||
|
- registry
|
||||||
|
- aqua-playground
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: lwhiteley/dependent-jobs-result-check@v1
|
||||||
|
id: status
|
||||||
|
with:
|
||||||
|
statuses: failure,cancelled,skipped
|
||||||
|
dependencies: ${{ toJSON(needs) }}
|
||||||
|
|
||||||
|
- name: Log output
|
||||||
|
run: |
|
||||||
|
echo "statuses:" "${{ steps.status.outputs.statuses }}"
|
||||||
|
echo "jobs:" "${{ steps.status.outputs.jobs }}"
|
||||||
|
echo "found any?:" "${{ steps.status.outputs.found }}"
|
||||||
|
|
||||||
|
- name: Fail run
|
||||||
|
if: fromJSON(steps.status.outputs.found)
|
||||||
|
run: exit 1
|
||||||
|
1
.github/workflows/tests.yml
vendored
1
.github/workflows/tests.yml
vendored
@ -29,6 +29,7 @@ jobs:
|
|||||||
fluence-js:
|
fluence-js:
|
||||||
name: "Run tests"
|
name: "Run tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
Loading…
x
Reference in New Issue
Block a user