diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..565ace28 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,57 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Node CI + +on: [push, pull_request] + +jobs: + test: + name: NodeJS ${{ matrix.node-version }} on ${{ matrix.os }} + + runs-on: ${{ matrix.os }} + + strategy: + matrix: + node-version: [10.x, 12.x] + os: [ubuntu-latest, windows-latest, macos-latest] + + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Environment Information + run: | + node --version + npm --version + gradle --version + + - name: npm install and test + run: | + npm i + npm t + env: + CI: true diff --git a/.travis.yml b/.travis.yml index 55dea8cf..291e5b65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ env: - ANDROID_BUILD_TOOLS_VERSION=29.0.2 - TERM=dumb # Keep gradle from crapping all over the log matrix: - - nodejs_version=10 - nodejs_version=12 language: android @@ -40,7 +39,6 @@ install: script: - npm test - - npm run cover after_script: - codecov diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index ca7918c3..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,35 +0,0 @@ -environment: - ANDROID_HOME: "C:\\android" - - # If the gradle daemon is used, the build hangs after generating the wrapper - GRADLE_OPTS: -Dorg.gradle.daemon=false - - # URL for SDK Tools, Revision 26.1.1 (September 2017) - SDK_TOOLS_URL: https://dl.google.com/android/repository/sdk-tools-windows-4333796.zip - - matrix: - - nodejs_version: 10 - - nodejs_version: 12 - -install: - # Install Android SDK Tools - - mkdir "%ANDROID_HOME%" - - appveyor DownloadFile "%SDK_TOOLS_URL%" -FileName "%TMP%/sdk-tools.zip" - - 7z x "%TMP%/sdk-tools.zip" -o"%ANDROID_HOME%" > nul - - set PATH=%PATH%;"%ANDROID_HOME%\tools\bin" - - - yes 2> nul | sdkmanager --licenses > nul - - sdkmanager "build-tools;29.0.2" - - - choco install gradle --version 3.4.1 - - - ps: Install-Product node $env:nodejs_version - - npm install - -build: off - -test_script: - - gradle --version - - node --version - - npm --version - - npm test