File tree 2 files changed +32
-2
lines changed
2 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 59
59
yarn test:coverage
60
60
61
61
- name : Upload coverage to Codecov
62
- uses : codecov/codecov-action@v3
62
+ uses : codecov/codecov-action@v4.0.1
63
63
with :
64
64
token : ${{ secrets.CODECOV_TOKEN }}
65
65
flags : ${{ runner.os }}
69
69
id : slack
70
70
71
71
with :
72
- channel-id : ' fs-review-team ' # team-testing-serverside
72
+ channel-id : ' vwo- fs-fme-sdk-job-status '
73
73
slack-message : " <!here> Node.js FME SDK Test on *Node-${{ matrix.node_version }}* and *${{ matrix.os }}* got *${{job.status}}* ${{job.status == 'success' && ':heavy_check_mark:' || ':x:'}} \n Commit: `${{github.event.head_commit.message}}`. \n Check the latest build: https://github.com/wingify/vwo-node-sdk/actions"
74
74
color : " ${{job.status == 'success' && '#00FF00' || '#FF0000'}}"
75
75
env :
Original file line number Diff line number Diff line change
1
+ name : Deploy to GitHub Pages
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - name : Checkout code
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Setup Node.js
17
+ uses : actions/setup-node@v2
18
+ with :
19
+ node-version : ' 18'
20
+
21
+ - name : Install dependencies
22
+ run : yarn install
23
+
24
+ - name : Build
25
+ run : yarn typedoc
26
+
27
+ - name : Deploy 🚀
28
+ uses : JamesIves/github-pages-deploy-action@v4
29
+ with :
30
+ folder : docs
You can’t perform that action at this time.
0 commit comments