File tree 3 files changed +24
-22
lines changed
3 files changed +24
-22
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js : # will use latest stable node
3
3
- ' stable'
4
- addons :
5
- chrome : stable
4
+ # addons:
5
+ # chrome: stable
6
6
cache : # global caching
7
7
directories :
8
8
# - node_modules
18
18
- NODE_ENV=mock
19
19
20
20
stages :
21
- # - lint
22
- # - test
23
- - build
21
+ # - lint
22
+ # - test
23
+ # - build
24
24
- name : release
25
25
if : branch = master AND type IN (push)
26
26
- name : deploy
@@ -30,24 +30,25 @@ stages:
30
30
31
31
jobs :
32
32
include :
33
- - stage : lint
34
- script : npm run lint
33
+ # - stage: lint
34
+ # script: npm run lint
35
35
36
- - stage : test # unit test
37
- script :
38
- - npm run test:ci
39
- # - "npm testcafe 'path:`/usr/bin/google-chrome-stable` --headless --disable-gpu --remote-debugging-port=9222 --remote-debugging-address=0.0.0.0' apps/webapp-e2e/**/*.e2e-spec.ts --app 'npm run start' --skip-js-errors --app-init-delay 4000"
36
+ # - stage: test # unit test
37
+ # script:
38
+ # - npm run test:ci
39
+ # # - "npm testcafe 'path:`/usr/bin/google-chrome-stable` --headless --disable-gpu --remote-debugging-port=9222 --remote-debugging-address=0.0.0.0' apps/webapp-e2e/**/*.e2e-spec.ts --app 'npm run start' --skip-js-errors --app-init-delay 4000"
40
40
41
- - stage : test # e2e test
42
- script :
43
- - npm run e2e:ci
41
+ # - stage: test # e2e test
42
+ # script:
43
+ # - npm run e2e:ci
44
44
45
- - stage : build
46
- before_script : npm run prebuild
47
- script :
48
- - npm run build:mock
45
+ # - stage: build
46
+ # before_script: npm run prebuild
47
+ # script:
48
+ # - npm run build:mock
49
49
50
50
- stage : release # semantic release - create changelog
51
+ install : skip
51
52
script : skip
52
53
deploy :
53
54
provider : script
Original file line number Diff line number Diff line change @@ -28,10 +28,11 @@ Before you submit your Pull Request (PR) consider the following guidelines:
28
28
* Commit your changes using a descriptive commit message that follows our
29
29
[commit message conventions](# commit-message-guidelines). Adherence to these conventions
30
30
is necessary because release notes are automatically generated from these messages.
31
-
31
+ by running followed by npm run commit.
32
32
` ` ` shell
33
- git commit -a
34
- # or use this git-cz commit interactive helper tool
33
+ # stage your changes
34
+ git add .
35
+ # use git-cz interactive helper tool to commit
35
36
npm run commit
36
37
` ` `
37
38
Note: the optional commit ` -a` command line option will automatically " add" and " rm" edited files.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ git tag tag-test-release-production
26
26
git push --tags origin master
27
27
```
28
28
29
- Once it’s done, ** you can clean the tag locally (and remotly)** like that (if you wish):1
29
+ Once it’s done, ** you can clean the tag locally (and remotly)** like that (if you wish):
30
30
``` bash
31
31
git tag --delete tag-test-release-production
32
32
git push --delete origin tag-test-release-production
You can’t perform that action at this time.
0 commit comments