Chart.js/.github/workflows/ci.yml

104 lines
2.4 KiB
YAML
Raw Normal View History

name: CI
on:
push:
branches:
- master
- "2.9"
pull_request:
branches:
- master
- "2.9"
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
outputs:
coveralls: ${{ steps.changes.outputs.src }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
2020-02-27 18:28:11 +01:00
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
docs:
- 'docs/**'
- 'package.json'
- 'tsconfig.json'
2020-12-19 18:52:18 +01:00
src:
- 'src/**'
- 'package.json'
2020-12-19 18:52:18 +01:00
test:
- 'test/**'
- 'karma.conf.js'
- 'package.json'
2020-12-19 18:52:18 +01:00
types:
- 'types/**'
- 'package.json'
- 'tsconfig.json'
- name: Install
run: npm ci
2020-12-19 18:52:18 +01:00
- name: Build
run: npm run build
- name: Test
if: |
steps.changes.outputs.src == 'true' ||
steps.changes.outputs.test == 'true'
run: |
npm run build
if [ "${{ runner.os }}" == "Windows" ]; then
npm test
elif [ "${{ runner.os }}" == "macOS" ]; then
npm test --browsers chrome,safari
else
xvfb-run --auto-servernum npm test
fi
shell: bash
- name: Lint
run: npm run lint
- name: Package
if: steps.changes.outputs.docs == 'true'
run: |
npm run docs
npm pack
- name: Coveralls Parallel - Chrome
if: steps.changes.outputs.src == 'true'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: './coverage/chrome/lcov.info'
flag-name: ${{ matrix.os }}-chrome
parallel: true
- name: Coveralls Parallel - Firefox
if: steps.changes.outputs.src == 'true'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: './coverage/firefox/lcov.info'
flag-name: ${{ matrix.os }}-firefox
parallel: true
finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
if: needs.build.outputs.coveralls == 'true'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true