Skip to content

Lit - Bare Starter - Stable #238

Lit - Bare Starter - Stable

Lit - Bare Starter - Stable #238

name: Lit - 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 lit my-lit-workspace --aspect frontend.lit/lit-env --default-scope org.scope-name --log error
- name: Check initial status
run: |
cd my-lit-workspace
# debugging
bit list --log error
bit status --log error
bit templates --log error
- name: Create a new component
run: |
cd my-lit-workspace
bit create lit ui/my-first --log error
bit install --add-missing-deps --log error
bit list --log error
bit status --log error
bit start --log error &
checkserver http://localhost:3000
- name: Test & Lint
run: |
cd my-lit-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-lit-workspace
cd my-lit-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