From d1cf8314cebe5a41b6f8c82cbf91b90c70ea7e26 Mon Sep 17 00:00:00 2001 From: Olivier Combe Date: Wed, 30 Aug 2023 16:10:10 +0200 Subject: [PATCH] add angular workflows --- .github/workflows/_sample.yml | 2 +- .../angular-bare-starter-nightly.yml | 65 ++++++++++ .../workflows/angular-bare-starter-stable.yml | 65 ++++++++++ .../workflows/angular-create-app-nightly.yml | 63 ++++++++++ .../workflows/angular-create-app-stable.yml | 64 ++++++++++ .../angular-create-component-nightly.yml | 57 +++++++++ .../angular-create-component-stable.yml | 57 +++++++++ .../angular-create-env-component-nightly.yml | 62 ++++++++++ .../angular-create-env-component-stable.yml | 62 ++++++++++ .../angular-create-workspace-nightly.yml | 49 ++++++++ .../angular-create-workspace-stable.yml | 49 ++++++++ ...angular-hello-world-quickstart-nightly.yml | 45 +++++++ .../angular-hello-world-quickstart-stable.yml | 46 +++++++ .gitignore | 112 +++++++++++++++++- README.md | 11 ++ 15 files changed, 807 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/angular-bare-starter-nightly.yml create mode 100644 .github/workflows/angular-bare-starter-stable.yml create mode 100644 .github/workflows/angular-create-app-nightly.yml create mode 100644 .github/workflows/angular-create-app-stable.yml create mode 100644 .github/workflows/angular-create-component-nightly.yml create mode 100644 .github/workflows/angular-create-component-stable.yml create mode 100644 .github/workflows/angular-create-env-component-nightly.yml create mode 100644 .github/workflows/angular-create-env-component-stable.yml create mode 100644 .github/workflows/angular-create-workspace-nightly.yml create mode 100644 .github/workflows/angular-create-workspace-stable.yml create mode 100644 .github/workflows/angular-hello-world-quickstart-nightly.yml create mode 100644 .github/workflows/angular-hello-world-quickstart-stable.yml diff --git a/.github/workflows/_sample.yml b/.github/workflows/_sample.yml index 443b5b4..4ac0cd1 100644 --- a/.github/workflows/_sample.yml +++ b/.github/workflows/_sample.yml @@ -47,7 +47,7 @@ jobs: bit use apps/my-second bit app list bit status - bit run my-second-app & + bit run my-second & checkserver http://localhost:3000 - name: Lint and test run: | diff --git a/.github/workflows/angular-bare-starter-nightly.yml b/.github/workflows/angular-bare-starter-nightly.yml new file mode 100644 index 0000000..30c6d11 --- /dev/null +++ b/.github/workflows/angular-bare-starter-nightly.yml @@ -0,0 +1,65 @@ +name: Angular - Bare Starter - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + + steps: + - name: Initialize a workspace + run: | + bit + bvm + bvm config set RELEASE_TYPE nightly + bvm upgrade + bit new angular my-angular-workspace --aspect teambit.angular/angular --default-scope org.scope-name --log error + - name: Check initial status + run: | + cd my-angular-workspace + # debugging + bit list --log error + bit status --log error + bit templates --log error + - name: Create a new component + run: | + cd my-angular-workspace + bit create ng-module ui/my-first --log error + bit install --log error + bit list --log error + bit status --log error + bit start --log error & + checkserver http://localhost:3000 + - name: Create a new app + run: | + cd my-angular-workspace + bit create ng-app apps/my-second --log error + bit install --add-missing-deps --log error + bit list --log error + bit use apps/my-second --log error + bit app list --log error + bit status --log error + bit run my-second --log error & + checkserver http://localhost:3000 + - name: Test & Lint + run: | + cd my-angular-workspace + bit lint --log error + bit test --log error + - name: Create a local scope, compile and export + run: | + barescope my-org.my-scope-name my-angular-workspace + cd my-angular-workspace + bit scope rename org.scope-name my-org.my-scope-name --refactor --log error + bit link --log error + bit compile --log error + bit tag --message "initial tag" --log error + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-bare-starter-stable.yml b/.github/workflows/angular-bare-starter-stable.yml new file mode 100644 index 0000000..bb655ac --- /dev/null +++ b/.github/workflows/angular-bare-starter-stable.yml @@ -0,0 +1,65 @@ +name: Angular - Bare Starter - Stable + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + + steps: + - name: Initialize a workspace + run: | + bit + bvm + bvm config set RELEASE_TYPE nightly + bvm upgrade + bit new angular my-angular-workspace --aspect teambit.angular/angular --default-scope org.scope-name --log error + - name: Check initial status + run: | + cd my-angular-workspace + # debugging + bit list --log error + bit status --log error + bit templates --log error + - name: Create a new component + run: | + cd my-angular-workspace + bit create ng-module ui/my-first --log error + bit install --log error + bit list --log error + bit status --log error + bit start --log error & + checkserver http://localhost:3000 + - name: Create a new app + run: | + cd my-angular-workspace + bit create ng-app apps/my-second --log error + bit install --add-missing-deps --log error + bit list --log error + bit use apps/my-second --log error + bit app list --log error + bit status --log error + bit run my-second --log error & + checkserver http://localhost:3000 + - name: Test & Lint + run: | + cd my-angular-workspace + bit lint --log error + bit test --log error + - name: Create a local scope, compile and export + run: | + barescope my-org.my-scope-name my-angular-workspace + cd my-angular-workspace + bit scope rename org.scope-name my-org.my-scope-name --refactor --log error + bit link --log error + bit compile --log error + bit tag --message "initial tag" --log error + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-app-nightly.yml b/.github/workflows/angular-create-app-nightly.yml new file mode 100644 index 0000000..0c4537b --- /dev/null +++ b/.github/workflows/angular-create-app-nightly.yml @@ -0,0 +1,63 @@ +name: Angular - Create App - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a new workspace + run: | + bit init my-workspace --default-scope my-org.my-scope --log error + - name: Create a Angular app component + run: | + cd my-workspace + bit create ng-app apps/my-app --aspect teambit.angular/angular --log error + bit use apps/my-app --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Run Angular app component + run: | + cd my-workspace + bit run my-app --log error & + checkserver http://localhost:3000 + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-app-stable.yml b/.github/workflows/angular-create-app-stable.yml new file mode 100644 index 0000000..28bbbaf --- /dev/null +++ b/.github/workflows/angular-create-app-stable.yml @@ -0,0 +1,64 @@ +name: Angular - Create App - Stable + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a new workspace + run: | + bit init my-workspace --default-scope my-org.my-scope --log error + - name: Create a Angular app component + run: | + cd my-workspace + bit create ng-app apps/my-app --aspect teambit.angular/angular --log error + bit use apps/my-app --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Run Angular app component + run: | + cd my-workspace + bit run my-app --log error & + checkserver http://localhost:3000 + bit list --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-component-nightly.yml b/.github/workflows/angular-create-component-nightly.yml new file mode 100644 index 0000000..b450982 --- /dev/null +++ b/.github/workflows/angular-create-component-nightly.yml @@ -0,0 +1,57 @@ +name: Angular - Create Component - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Create a new workspace + run: | + bit new angular my-workspace --env teambit.angular/angular --default-scope my-org.my-scope --log error + - name: Create a React component and set env + run: | + cd my-workspace + bit create ng-module pages/welcome --env my-org.my-scope/envs/my-angular-env --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-component-stable.yml b/.github/workflows/angular-create-component-stable.yml new file mode 100644 index 0000000..ef44b24 --- /dev/null +++ b/.github/workflows/angular-create-component-stable.yml @@ -0,0 +1,57 @@ +name: Angular - Create Component - Stable + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Create a new workspace + run: | + bit new angular my-workspace --env teambit.angular/angular --default-scope my-org.my-scope --log error + - name: Create a React component and set env + run: | + cd my-workspace + bit create ng-module pages/welcome --env my-org.my-scope/envs/my-angular-env --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-env-component-nightly.yml b/.github/workflows/angular-create-env-component-nightly.yml new file mode 100644 index 0000000..c9760a1 --- /dev/null +++ b/.github/workflows/angular-create-env-component-nightly.yml @@ -0,0 +1,62 @@ +name: Angular - Create Env and Component - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a new workspace + run: | + bit init my-workspace --default-scope my-org.my-scope --log error + - name: Create a Angular env + run: | + cd my-workspace + bit create ng-env envs/my-angular-env --aspect teambit.angular/angular --log error + - name: Create a Angular component and set env + run: | + cd my-workspace + bit create ng-module pages/welcome --aspect teambit.angular/angular --log error + bit env set my-org.my-scope/pages/welcome my-org.my-scope/envs/my-angular-env --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-env-component-stable.yml b/.github/workflows/angular-create-env-component-stable.yml new file mode 100644 index 0000000..ef03fa8 --- /dev/null +++ b/.github/workflows/angular-create-env-component-stable.yml @@ -0,0 +1,62 @@ +name: Angular - Create Env and Component - Stable + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a new workspace + run: | + bit init my-workspace --default-scope my-org.my-scope --log error + - name: Create a Angular env + run: | + cd my-workspace + bit create ng-env envs/my-angular-env --aspect teambit.angular/angular --log error + - name: Create a Angular component and set env + run: | + cd my-workspace + bit create ng-module pages/welcome --aspect teambit.angular/angular --log error + bit env set my-org.my-scope/pages/welcome my-org.my-scope/envs/my-angular-env --log error + - name: Install dependencies + run: | + cd my-workspace + bit install --add-missing-deps --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, lint, test components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-workspace-nightly.yml b/.github/workflows/angular-create-workspace-nightly.yml new file mode 100644 index 0000000..f5692ab --- /dev/null +++ b/.github/workflows/angular-create-workspace-nightly.yml @@ -0,0 +1,49 @@ +name: Angular - Create Workspace - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Create a new workspace + run: | + bit new angular my-workspace --env teambit.angular/angular --default-scope my-org.my-scope --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, Lint, Test Components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-create-workspace-stable.yml b/.github/workflows/angular-create-workspace-stable.yml new file mode 100644 index 0000000..55a31ab --- /dev/null +++ b/.github/workflows/angular-create-workspace-stable.yml @@ -0,0 +1,49 @@ +name: Angular - Create Workspace - Stable + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + steps: + - name: Show BVM config + run: | + bvm config + - name: Create a new workspace + run: | + bit new angular my-workspace --env teambit.angular/angular --default-scope my-org.my-scope --log error + - name: Show components, envs and status + run: | + cd my-workspace + bit status --log error + bit envs --log error + - name: Compile, Lint, Test Components + run: | + cd my-workspace + bit compile --log error + bit lint --log error + bit test --log error + - name: Preview components + run: | + cd my-workspace + bit start --log error & + checkserver http://localhost:3000 + - name: Tag components + run: | + cd my-workspace + bit tag --message "initial tag" --log error + - name: Create a local scope + run: | + barescope my-org.my-scope my-workspace + - name: Export components + run: | + cd my-workspace + bit export --log error + continue-on-error: false diff --git a/.github/workflows/angular-hello-world-quickstart-nightly.yml b/.github/workflows/angular-hello-world-quickstart-nightly.yml new file mode 100644 index 0000000..f759e7a --- /dev/null +++ b/.github/workflows/angular-hello-world-quickstart-nightly.yml @@ -0,0 +1,45 @@ +name: Angular - Hello world - Quick Start - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: bitsrc/nightly:latest + env: + HOME: /home/bituser + + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a workspace + run: | + bit new hello-world-angular my-hello-world-angular --env teambit.community/starters/hello-world-angular --log error + - name: Run the app component + run: | + cd my-hello-world-angular + bit run hello-world-app --log error & + checkserver http://localhost:3000 + - name: Preview components + run: | + cd my-hello-world-angular + bit start --log error & + checkserver http://localhost:3000 + - name: Collaborate + run: | + cd my-hello-world-angular + bit status --log error + - name: Create a local scope, compile and export + run: | + barescope my-org.my-scope-name my-hello-world-angular + cd my-hello-world-angular + bit scope rename org.scope-name my-org.my-scope-name --refactor --log error + bit link --log error + bit compile --log error + bit tag --message "initial tag" --log error + bit export --log error diff --git a/.github/workflows/angular-hello-world-quickstart-stable.yml b/.github/workflows/angular-hello-world-quickstart-stable.yml new file mode 100644 index 0000000..46711bc --- /dev/null +++ b/.github/workflows/angular-hello-world-quickstart-stable.yml @@ -0,0 +1,46 @@ +name: Angular - Hello world - Quick Start - Nightly + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: bitsrc/stable:latest + env: + HOME: /home/bituser + + steps: + - name: Show BVM config + run: | + bvm config + - name: Initialize a workspace + run: | + bit new hello-world-angular my-hello-world-angular --env teambit.community/starters/hello-world-angular --log error + - name: Run the app component + run: | + cd my-hello-world-angular + bit run hello-world-app --log error & + checkserver http://localhost:3000 + - name: Preview components + run: | + cd my-hello-world-angular + bit start --log error & + checkserver http://localhost:3000 + - name: Collaborate + run: | + cd my-hello-world-angular + bit status --log error + - name: Create a local scope, compile and export + run: | + barescope my-org.my-scope-name my-hello-world-angular + cd my-hello-world-angular + bit scope rename org.scope-name my-org.my-scope-name --refactor --log error + bit link --log error + bit compile --log error + bit tag --message "initial tag" --log error + bit export --log error + continue-on-error: false diff --git a/.gitignore b/.gitignore index 1795c8d..e5a792e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,111 @@ -.history \ No newline at end of file +# Logs +logs +*.log +npm-debug.log* +# Runtime data +pids +*.pid +*.seed +*.pid.lock +.bit.cache/ +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages +!fixtures/filing-cabinet/node_modules + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz +!e2e/fixtures/**/*.tgz + +# Yarn Integrity file +.yarn-Integrity + +# vscode +.vscode + +# idea +.idea/ + +#output +dist/* +public/ +!components/*/dist/ +dist-legacy/ +flow-typed/ +eslint-report.html +types/* + +#distrubution +distribution/ + +artifacts/ +bit-*.tar.gz +tmp/ +bin/node +nodeBin + +# bit directories +.bit + +# DS_Store +.DS_Store + +#vscode history +.history + +#gitbook +_book + +# pkg releases +/releases/ +bin/bit + +# sonarcloud dir +.scannerwork + +# package managers +pnpm-lock.yaml +package-lock.json +build-harmony/yarn.lock + +# yarn2 (as suggested here https://yarnpkg.com/getting-started/qa) +.yarn/* +!.yarn/cache +!.yarn/releases +!.yarn/plugins +!.yarn/sdks +!.yarn/versions +yarn.lock + +# cypress +cypress/videos + +# other +/scopes/versions/angular-v15/backup/ diff --git a/README.md b/README.md index 33a8fb5..3a244a7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # envs-health-status basic e2e runs for default envs created and maintained by bit + +# Angular Env Status +Collection of tests for the `Angular Env`. + +| Test Scenario | Bit Stable | Bit Nightly | +|------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| --------| +| New Angular Workspace | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-workspace-stable.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-workspace-stable.yml) | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-workspace-nightly.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-workspace-nightly.yml) | +| New Angular Workspace + Create Component | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-component-stable.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-component-stable.yml) | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-component-nightly.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-component-nightly.yml) | +| Init Workspace + Create Env + Create Component | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-env-component-stable.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-env-component-stable.yml) | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-env-component-nightly.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-env-component-nightly.yml) | +| Init Workspace + Create Angular App | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-app-stable.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-app-stable.yml) | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-app-nightly.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-create-app-nightly.yml) | +| Hello World Quickstart | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-hello-world-quickstart-stable.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-hello-world-quickstart-stable.yml) | [![Github Action](https://github.com/teambit/envs-health-status/actions/workflows/angular-hello-world-quickstart-nightly.yml/badge.svg)](https://github.com/teambit/envs-health-status/actions/workflows/angular-hello-world-quickstart-nightly.yml) |