-
Notifications
You must be signed in to change notification settings - Fork 197
44 lines (43 loc) · 1.2 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on: [ push, pull_request ]
jobs:
Build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.integration }}
strategy:
matrix:
integration: [ true ]
integration-deps:
- "@bpmn-io/properties-panel@3"
include:
- integration-deps: "" # as defined in package.json
integration: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install dependencies for integration test
if: ${{ matrix.integration-deps != '' }}
run: npm install ${{ matrix.integration-deps }}
- name: Build
if: ${{ matrix.integration-deps != '' }}
run: npm run all
- name: Build with coverage
if: ${{ matrix.integration-deps == '' }}
env:
COVERAGE: 1
run: npm run all
- name: Upload coverage
if: ${{ matrix.integration-deps == '' }}
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}