chore: create basic GitHub action CI

This commit is contained in:
Nico Rehwaldt 2021-01-22 10:33:38 +01:00 committed by fake-join[bot]
parent 67381bd8e0
commit ac6b8a6197

37
.github/workflows/CI.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: CI
on: [ push, pull_request ]
jobs:
Build:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
node-version: [ 14 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Build
env:
COVERAGE: 1
TEST_BROWSERS: Firefox,PhantomJS,ChromeHeadless
run: npm run all
- name: Upload Coverage
run: npx codecov