2020-05-23 08:37:31 +03:00
|
|
|
name: Node.js CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-05-30 05:09:15 +03:00
|
|
|
branches:
|
2020-06-13 04:26:47 +03:00
|
|
|
- master
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-07-13 13:48:33 +03:00
|
|
|
|
2020-05-30 05:09:15 +03:00
|
|
|
test-node:
|
|
|
|
|
2020-11-24 02:22:31 +03:00
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
runs-on: macos-latest
|
2020-05-30 05:09:15 +03:00
|
|
|
|
|
|
|
strategy:
|
2020-07-14 02:45:20 +03:00
|
|
|
fail-fast: false
|
2020-05-30 05:09:15 +03:00
|
|
|
matrix:
|
2020-09-12 08:31:17 +03:00
|
|
|
node-version: [ 8.x, 10.x, 12.x, 13.x ]
|
2020-05-30 05:09:15 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-11-24 02:22:31 +03:00
|
|
|
# - name: Install node-hid requirements
|
|
|
|
# run: sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev libudev-dev
|
2020-09-12 08:18:28 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Install dependencies (and link per package)
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build CommonJS and ESM (from TypeScript)
|
|
|
|
run: npm run build-all
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test-node
|
2020-05-30 05:09:15 +03:00
|
|
|
|
2020-07-13 13:48:33 +03:00
|
|
|
|
2020-05-30 05:09:15 +03:00
|
|
|
test-browser:
|
2020-05-23 08:37:31 +03:00
|
|
|
|
2020-11-24 02:22:31 +03:00
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
runs-on: macos-latest
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
strategy:
|
2020-07-14 02:45:20 +03:00
|
|
|
fail-fast: false
|
2020-05-23 08:37:31 +03:00
|
|
|
matrix:
|
2020-05-30 05:09:15 +03:00
|
|
|
module: [ 'esm', 'umd' ]
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
steps:
|
2020-05-30 05:09:15 +03:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-11-24 02:22:31 +03:00
|
|
|
# - name: Install node-hid requirements
|
|
|
|
# run: sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev libudev-dev
|
2020-05-23 08:37:31 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Install dependencies (and link per package)
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build CommonJS and ESM (from TypeScript)
|
|
|
|
run: npm run build-all
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test-browser-${{ matrix.module }}
|
2020-07-13 13:48:33 +03:00
|
|
|
|
2020-08-28 04:54:16 +03:00
|
|
|
test-react-native:
|
|
|
|
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
# Temporary for testing CI
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Use Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install dependencies (and link per package)
|
|
|
|
run: npm ci
|
2020-08-28 04:54:16 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Build CommonJS and ESM (from TypeScript)
|
|
|
|
run: npm run build-all
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test-react
|
2020-08-28 04:54:16 +03:00
|
|
|
|
|
|
|
|
2020-07-13 13:48:33 +03:00
|
|
|
coverage:
|
|
|
|
|
|
|
|
name: Coverage
|
|
|
|
|
2020-11-24 03:10:17 +03:00
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
runs-on: macos-latest
|
2020-07-13 13:48:33 +03:00
|
|
|
|
2020-07-14 02:45:20 +03:00
|
|
|
continue-on-error: true
|
|
|
|
|
2020-07-13 13:48:33 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-11-24 03:10:17 +03:00
|
|
|
# - name: Install node-hid requirements
|
|
|
|
# run: sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev libudev-dev
|
2020-09-12 08:31:17 +03:00
|
|
|
|
|
|
|
- name: Install dependencies (and link per package)
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Build CommonJS and ESM (from TypeScript)
|
|
|
|
run: npm run build-all
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-09-12 08:31:17 +03:00
|
|
|
- name: Run tests
|
|
|
|
run: npm run test-coverage
|
2020-08-24 02:39:57 +03:00
|
|
|
|
2020-08-25 08:53:48 +03:00
|
|
|
- name: Upload coverage summary
|
2020-08-24 02:39:57 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: coverage-summary
|
|
|
|
path: ./output/summary.txt
|
|
|
|
|
|
|
|
- name: Tar files
|
|
|
|
run: tar -cvf ./output/coverage.tar ./output/lcov-report/
|
|
|
|
|
2020-08-25 08:53:48 +03:00
|
|
|
- name: Upload coverage
|
2020-08-24 02:39:57 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: coverage-complete
|
|
|
|
path: ./output/coverage.tar
|