mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-19 14:46:51 +01:00
* Bump actions/setup-node from 2 to 3 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update .github/workflows/ci.yml Co-authored-by: Jukka Kurkela <jukka.kurkela@gmail.com> * Apply suggestions from code review Co-authored-by: Jukka Kurkela <jukka.kurkela@gmail.com> * Update .github/workflows/deploy-docs.yml Co-authored-by: Jukka Kurkela <jukka.kurkela@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Evert Timberg <evert.timberg@gmail.com> Co-authored-by: Jukka Kurkela <jukka.kurkela@gmail.com> Co-authored-by: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com>
114 lines
3.0 KiB
YAML
114 lines
3.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "2.9"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- "2.9"
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
permissions:
|
|
checks: write # for coverallsapp/github-action to create new checks
|
|
contents: read # for dorny/paths-filter to fetch a list of changed files
|
|
pull-requests: read # for dorny/paths-filter to read pull requests
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
outputs:
|
|
coveralls: ${{ steps.changes.outputs.src }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: npm
|
|
- uses: dorny/paths-filter@v2
|
|
id: changes
|
|
with:
|
|
filters: |
|
|
docs:
|
|
- 'docs/**'
|
|
- 'package.json'
|
|
- 'tsconfig.json'
|
|
src:
|
|
- 'src/**'
|
|
- 'package.json'
|
|
test:
|
|
- 'test/**'
|
|
- 'karma.conf.js'
|
|
- 'package.json'
|
|
types:
|
|
- 'types/**'
|
|
- 'package.json'
|
|
- 'tsconfig.json'
|
|
- name: Install
|
|
run: npm ci
|
|
- name: Build
|
|
run: npm run build
|
|
- name: Test
|
|
if: |
|
|
(steps.changes.outputs.src == 'true' ||
|
|
steps.changes.outputs.test == 'true') &&
|
|
runner.os != 'Windows'
|
|
run: |
|
|
npm run build
|
|
if [ "${{ 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' &&
|
|
runner.os != 'Windows'
|
|
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' &&
|
|
runner.os != 'Windows'
|
|
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:
|
|
permissions:
|
|
checks: write # for coverallsapp/github-action to create new checks
|
|
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
|