Stencil - Create Env and Component - Nightly #270
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stencil - 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 Stencil env | |
run: | | |
cd my-workspace | |
bit create stencil-env envs/my-stencil-env --aspect frontend.stencil/stencil-env --log error | |
- name: Create a Stencil component and set env | |
run: | | |
cd my-workspace | |
bit create stencil pages/welcome-home --aspect frontend.stencil/stencil-env --log error | |
bit env set my-org.my-scope/pages/welcome-home my-org.my-scope/envs/my-stencil-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 |