Skip to content

Commit 1e6cdb0

Browse files
committed
Fix CI
1 parent da00633 commit 1e6cdb0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
- name: build
4646
run: npm run build
4747
- name: Ensure that test URLs aren't included in the built file
48-
run: ! grep http distribution/index.js
48+
run: "! grep http distribution/index.js"

.github/workflows/demo.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
# Allow one concurrent deployment
1515
concurrency:
16-
group: "pages"
16+
group: 'pages'
1717
cancel-in-progress: true
1818

1919
jobs:
@@ -26,6 +26,8 @@ jobs:
2626
- run: npm run demo:test
2727
- name: Upload artifact
2828
uses: actions/upload-pages-artifact@v1
29+
with:
30+
path: demo/dist/
2931

3032
deploy:
3133
environment:

0 commit comments

Comments
 (0)