mirror of
https://github.com/appium/appium.git
synced 2026-03-13 15:40:21 -05:00
FOSSA was giving us a bunch of warnings about copyleft licenses, but these licenses are only present in our examples. This configuration file will tell FOSSA to ignore that stuff. FOSSA recognizes `examples/` as something it should skip, but not `sample-code`. It's easier to rename the dir than it is to negotiate a PR with FOSSA. Why they don't allow the config file to just ignore directories is beyond me...
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Node.js CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x, 14.x, 16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: |
|
|
npm install
|
|
npm test
|
|
npm run install-fake-driver
|
|
npm run e2e-test
|
|
|
|
fossa-scan:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Analyze with FOSSA
|
|
- run: |
|
|
npm install
|
|
curl https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash
|
|
fossa analyze
|
|
env:
|
|
FOSSA_API_KEY: ${{secrets.FOSSA_API_KEY}}
|
|
|
|
generate_docs:
|
|
needs: [build]
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: |
|
|
npm install
|
|
npm run generate-docs
|