Skip to content

Commit 1bd432c

Browse files
committed
docs(browser): fix travis workflow
fix travis workflow
1 parent 6a8681d commit 1bd432c

File tree

3 files changed

+24
-22
lines changed

3 files changed

+24
-22
lines changed

.travis.yml

+19-18
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js: # will use latest stable node
33
- 'stable'
4-
addons:
5-
chrome: stable
4+
#addons:
5+
# chrome: stable
66
cache: # global caching
77
directories:
88
# - node_modules
@@ -18,9 +18,9 @@ env:
1818
- NODE_ENV=mock
1919

2020
stages:
21-
# - lint
22-
# - test
23-
- build
21+
# - lint
22+
# - test
23+
# - build
2424
- name: release
2525
if: branch = master AND type IN (push)
2626
- name: deploy
@@ -30,24 +30,25 @@ stages:
3030

3131
jobs:
3232
include:
33-
- stage: lint
34-
script: npm run lint
33+
# - stage: lint
34+
# script: npm run lint
3535

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"
4040

41-
- stage: test # e2e test
42-
script:
43-
- npm run e2e:ci
41+
# - stage: test # e2e test
42+
# script:
43+
# - npm run e2e:ci
4444

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
4949

5050
- stage: release # semantic release - create changelog
51+
install: skip
5152
script: skip
5253
deploy:
5354
provider: script

CONTRIBUTING.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ Before you submit your Pull Request (PR) consider the following guidelines:
2828
* Commit your changes using a descriptive commit message that follows our
2929
[commit message conventions](#commit-message-guidelines). Adherence to these conventions
3030
is necessary because release notes are automatically generated from these messages.
31-
31+
by running followed by npm run commit.
3232
```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
3536
npm run commit
3637
```
3738
Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.

stories/howto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ git tag tag-test-release-production
2626
git push --tags origin master
2727
```
2828

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):
3030
```bash
3131
git tag --delete tag-test-release-production
3232
git push --delete origin tag-test-release-production

0 commit comments

Comments
 (0)