-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (51 loc) · 1.48 KB
/
nextjs-create-workspace-stable.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
49
50
51
52
53
54
name: Next.js - Create Workspace - 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 upgrade
bit new nextjs my-nextjs-workspace --env frontend.nextjs/nextjs-env --default-scope org.scope-name --log error
- name: Check initial status
run: |
cd my-nextjs-workspace
bit list --log error
bit status --log error
bit templates --log error
- name: Create a new app
run: |
cd my-nextjs-workspace
bit install --log error
bit list --log error
bit app list --log error
bit status --log error
bit run my-nextjs-app --log error &
checkserver http://localhost:3000
- name: Lint and test
run: |
cd my-nextjs-workspace
bit list --log error
bit status --log error
bit lint --log error
bit test --log error
- name: Create a local scope, compile and export
run: |
barescope my-org.my-scope-name my-nextjs-workspace
cd my-nextjs-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