mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-12 10:04:16 +00:00
chore: create basic GitHub action CI
This commit is contained in:
parent
67381bd8e0
commit
ac6b8a6197
37
.github/workflows/CI.yml
vendored
Normal file
37
.github/workflows/CI.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user