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 da00633 commit 1e6cdb0Copy full SHA for 1e6cdb0
.github/workflows/ci.yml
@@ -45,4 +45,4 @@ jobs:
45
- name: build
46
run: npm run build
47
- name: Ensure that test URLs aren't included in the built file
48
- run: ! grep http distribution/index.js
+ run: "! grep http distribution/index.js"
.github/workflows/demo.yml
@@ -13,7 +13,7 @@ permissions:
13
14
# Allow one concurrent deployment
15
concurrency:
16
- group: "pages"
+ group: 'pages'
17
cancel-in-progress: true
18
19
jobs:
@@ -26,6 +26,8 @@ jobs:
26
- run: npm run demo:test
27
- name: Upload artifact
28
uses: actions/upload-pages-artifact@v1
29
+ with:
30
+ path: demo/dist/
31
32
deploy:
33
environment:
0 commit comments