We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 022193d commit 9eff524Copy full SHA for 9eff524
.github/workflows/continuous-integration.yml
@@ -11,6 +11,10 @@ jobs:
11
timeout-minutes: 10
12
steps:
13
- 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 --no-overlay
18
- uses: actions/setup-node@v4
19
with:
20
node-version: ${{ env.NODE_VERSION }}
.gitignore
@@ -4,3 +4,4 @@ node_modules/
4
### IDE ###
5
.idea/
6
.vscode/
7
+coverage/
0 commit comments