-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (45 loc) · 1.22 KB
/
vue-hello-world-quickstart-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Hello Vue - 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: Initialize a workspace
run: |
bvm config set RELEASE_TYPE nightly
bvm config
bvm versions
bvm upgrade
bit --version
bit new vue-hello-world my-vue-hello-world --aspect teambit.community/starters/hello-world-vue
- name: Run the app component
run: |
cd my-vue-hello-world
bit run hello-world-app &
checkserver http://localhost:3000
- name: Preview components
run: |
cd my-vue-hello-world
bit start &
checkserver http://localhost:3000
- name: Collaborate
run: |
cd my-vue-hello-world
bit status
- name: Create a local scope, compile and export
run: |
barescope my-org.my-scope-name my-vue-hello-world
cd my-vue-hello-world
bit scope rename org.scope-name my-org.my-scope-name --refactor
bit link
bit compile
bit tag --message "initial tag"
bit export
continue-on-error: false