You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by ov...@apache.org on 2020/06/23 02:29:20 UTC

[incubator-echarts] branch ci created (now eceee1b)

This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch ci
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git.


      at eceee1b  core(ci): only run unit test on master or release branch

This branch includes the following new commits:

     new eceee1b  core(ci): only run unit test on master or release branch

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[incubator-echarts] 01/01: core(ci): only run unit test on master or release branch

Posted by ov...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch ci
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git

commit eceee1b245005bb8d0a34e6b3abe5a2c53c23cda
Author: Ovilia <zw...@gmail.com>
AuthorDate: Mon Jun 22 18:06:49 2020 +0800

    core(ci): only run unit test on master or release branch
---
 .github/workflows/nodejs.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index 0834a8f..5c03dfa 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -36,6 +36,14 @@ jobs:
           npm run release
         env:
           CI: true
+
+  test:
+    runs-on: ubuntu-latest
+    needs: build
+
+    if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release'
+
+    steps:
       - name: unit test
         run: |
           npm run test


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org