mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
f7cc8d2343
Delete unused files and dependencies Update API hostname in WorkflowService Update API hostname in AnalyticsDatabaseService
193 lines
5.5 KiB
YAML
193 lines
5.5 KiB
YAML
name: Compile
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- 'hotfix-*'
|
|
- 'release'
|
|
|
|
|
|
jobs:
|
|
|
|
compile-accounts:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd CommonUI && npm install --force
|
|
- run: cd Accounts && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-common-server:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-common-ui:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonUI && npm install --force && npm run compile && npm run dep-check
|
|
|
|
compile-common:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-app:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd CommonUI && npm install --force
|
|
- run: cd App && npm install && npm run compile && npm run dep-check
|
|
|
|
|
|
compile-admin-dashboard:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd CommonUI && npm install --force
|
|
- run: cd AdminDashboard && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-dashboard:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd CommonUI && npm install --force
|
|
- run: cd Dashboard && npm install && npm run compile && npm run dep-check
|
|
|
|
|
|
compile-model:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd Model && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-e2e:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd E2E && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-probe:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd Probe && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-ingestor:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd Ingestor && npm install && npm run compile && npm run dep-check
|
|
|
|
|
|
compile-status-page:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd CommonUI && npm install --force
|
|
- run: cd StatusPage && npm install && npm run compile && npm run dep-check
|
|
|
|
compile-test-server:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_PIPELINE_ID: ${{github.run_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18.3.0
|
|
- run: cd Common && npm install
|
|
- run: cd Model && npm install
|
|
- run: cd CommonServer && npm install
|
|
- run: cd TestServer && npm install && npm run compile && npm run dep-check |