Skip to content

Add ability to style text #85

Add ability to style text

Add ability to style text #85

Workflow file for this run

# https://docs.github.com/actions/reference/workflow-syntax-for-github-actions
name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run build
- run: npm run lint
- name: Run tests
uses: GabrielBB/xvfb-action@v1
with:
run: npm run test
- if: env.CC_TEST_REPORTER_ID
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
- uses: actions/upload-artifact@v3
with:
path: dist/
name: chartjs-plugin-datalabels
if-no-files-found: error