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 5c066a4 commit 58a78ffCopy full SHA for 58a78ff
.github/workflows/test.yml
@@ -66,3 +66,14 @@ jobs:
66
npm install
67
npm test
68
npm run build
69
+ test-documentation-image:
70
+ runs-on: ubuntu-latest
71
+ steps:
72
+ - name: Check out src from Git
73
+ uses: actions/checkout@v2
74
+ - name: Get history and tags for SCM versioning to work
75
+ run: |
76
+ git fetch --prune --unshallow
77
+ git fetch --depth=1 origin +refs/tags/*:refs/tags/*
78
+ - name: Build Docker Image
79
+ run: docker build . --file docs/Dockerfile
0 commit comments