Skip to content

Html - Create Env and Component - Stable #288

Html - Create Env and Component - Stable

Html - Create Env and Component - Stable #288

name: Html - 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 Html env
run: |
cd my-workspace
bit create html-env envs/my-html-env --aspect frontend.html/html-env --log error
- name: Create a Html component and set env
run: |
cd my-workspace
bit create html pages/welcome --aspect frontend.html/html-env --log error
bit env set my-org.my-scope/pages/welcome my-org.my-scope/envs/my-html-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