Skip to content

fix chartjs cdn url

fix chartjs cdn url #3

Workflow file for this run

name: CI Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x] # Test on Node.js 18 and 20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm' # Enable caching for npm dependencies
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test