This is an automated email from the ASF dual-hosted git repository.
ovilia pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-examples.git
The following commit(s) were added to refs/heads/gh-pages by this push:
new e490de18 chore: add e2e to workflow
e490de18 is described below
commit e490de18765fe2aa315f92397f948fe9e6e0803c
Author: Ovilia <[email protected]>
AuthorDate: Thu Jun 9 17:00:54 2022 +0800
chore: add e2e to workflow
---
.github/workflows/e2e-test.yml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml
new file mode 100644
index 00000000..9d4e1727
--- /dev/null
+++ b/.github/workflows/e2e-test.yml
@@ -0,0 +1,22 @@
+name: Run e2e Test
+
+on:
+ workflow_dispatch: {}
+
+jobs:
+ build-and-deploy:
+ runs-on: ubuntu-latest
+ steps:
+ - name: checkout
+ uses: actions/checkout@v2
+
+ - name: npm install
+ run: |
+ npm install
+ npm install puppeteer
+
+ - name: build
+ run: npm run build:example
+
+ - name: test e2e
+ run: npm run test:e2e
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]