Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/control.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
test:
name: Tests on macos-latest
runs-on: macOS-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Setup node
Expand All @@ -24,6 +25,7 @@ jobs:
coverage:
name: Tests & coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Setup node
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
test:
name: Tests on macos-latest
runs-on: macOS-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Setup node
Expand All @@ -25,6 +26,7 @@ jobs:
coverage:
name: Tests & coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -42,6 +44,7 @@ jobs:
windows:
name: Test on windows-latest
runs-on: windows-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -52,6 +55,7 @@ jobs:
control-compatibility:
name: Control compatibility test
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
Expand All @@ -72,6 +76,7 @@ jobs:
qualitycontrol-compatibility:
name: QualityControl compatibility test
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
# os: [macOS-latest, ubuntu-latest] do not run on macos-latest due to known bug
Expand All @@ -93,6 +98,7 @@ jobs:
infologger-compatibility:
name: InfoLogger compatibility test
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/infologger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
test:
name: Tests on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Setup node
Expand All @@ -23,6 +24,7 @@ jobs:
coverage:
name: Tests & coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
lint-check:
name: Check eslint rules on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Setup node
Expand All @@ -24,6 +25,7 @@ jobs:
test:
name: Tests on ubuntu-latest only if lint-check passes
runs-on: ubuntu-latest
timeout-minutes: 6
needs: lint-check
steps:
- uses: actions/checkout@v4
Expand All @@ -36,6 +38,7 @@ jobs:
coverage:
name: Tests and generate lcov reoprt coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
needs: lint-check
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
jobs:
deploy-npm-module:
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
PROJECT: ${{ steps.set-project.outputs.project }}
VERSION: ${{ steps.set-project.outputs.version }}
Expand Down Expand Up @@ -44,6 +45,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_DEPLOY_TOKEN }}
upload-asset:
runs-on: ubuntu-latest
timeout-minutes: 10
needs: deploy-npm-module
if: ${{ needs.deploy-npm-module.outputs.PROJECT != 'Framework' }}
outputs:
Expand Down
Loading