Skip to content

Commit

Permalink
Merge branch 'master' into fix-10945
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovilia authored Oct 21, 2019
2 parents dc8c853 + 8b8a67f commit 625f57c
Show file tree
Hide file tree
Showing 63 changed files with 8,222 additions and 2,914 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm install
npm install -g jshint
- name: jshint
run: |
jshint
- name: build
run: |
node build/build.js
env:
CI: true
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ If you are a committer of apache/incubator-echarts project, which means you have
+ About adding the license/header of 3rd-party work:
+ https://www.apache.org/legal/src-headers.html#3party
+ Licenses that are compatible with the Apache license:
+ BSD and MIT are compatibal with the Apache license but CC_BY_SA is not (https://apache.org/legal/resolved.html#cc-sa).
+ BSD and MIT are compatible with the Apache license but CC_BY_SA is not (https://apache.org/legal/resolved.html#cc-sa).
+ Stack overflow:
+ before intending to copy code from Stack overlow, we must check:
+ https://apache.org/legal/resolved.html#stackoverflow
+ https://issues.apache.org/jira/browse/LEGAL-471
+ Wikipedia:
+ Wikipedia is licensed CC 4.0 BY_SA and is compatible with the Apache license. So we should not copy code from Wikipedia.
+ Wikipedia is licensed CC 4.0 BY_SA and is incompatible with the Apache license. So we should not copy code from Wikipedia.
+ Working in progress disclaimer:
+ In some cases we might use the work in progress disclaimer and document the issues in that until they are fixed.
+ https://incubator.apache.org/policy/incubation.html#disclaimers
Loading

0 comments on commit 625f57c

Please sign in to comment.