Skip to content

Commit d2ca429

Browse files
[DEVEX-1357] checkout master branch
1 parent 022193d commit d2ca429

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
timeout-minutes: 10
1212
steps:
1313
- uses: actions/checkout@v4
14+
- name: 'Fetch master branch and checkout/copy over only the docs folder to gh-pages'
15+
run: |
16+
git fetch origin master --depth 1
17+
git checkout origin/master
1418
- uses: actions/setup-node@v4
1519
with:
1620
node-version: ${{ env.NODE_VERSION }}
@@ -27,7 +31,7 @@ jobs:
2731
args: >
2832
-Dsonar.projectKey=bitvavo_node-bitvavo-api
2933
-Dsonar.organization=bitvavo
30-
-Dsonar.sources=lib
34+
-Dsonar.sources=.
3135
-Dsonar.exclusions=**/node_modules/**,**/dist/**,**/coverage/**,**/e2e/**,**/cypress/**,**/github-trigger/**
3236
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
3337
-Dsonar.sourceEncoding=UTF-8

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules/
44
### IDE ###
55
.idea/
66
.vscode/
7+
coverage/

0 commit comments

Comments
 (0)