[pull] master from highcharts:master #1309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Dashboards Test | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the default branch | |
push: | |
branches: ['master'] | |
pull_request: | |
branches: ['master'] | |
paths: | |
- '.github/workflows/dashboards-test.yml' | |
- 'css/dashboards*' | |
- 'css/datagrid*' | |
- 'samples/dashboards/**' | |
- 'test/cypress/dashboards/visual/**' | |
- 'ts/Dashboards/**' | |
- 'ts/Data/**' | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dashboards_test: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [lts/iron] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm i | |
- name: Build Highcharts definitions | |
run: npx gulp jsdoc-dts | |
- name: Run Dashboards Tests | |
run: npx gulp dashboards/test | |
- name: Checkout utils | |
uses: actions/checkout@v4 | |
with: | |
repository: highcharts/highcharts-utils | |
path: utils | |
fetch-depth: 1 | |
- name: Install Highcharts Utils | |
run: | | |
cd utils | |
npm i | |
- name: Run Cypress test | |
uses: cypress-io/github-action@v6 | |
with: | |
start: node utils/server --localOnly | |
wait-on: 'http://localhost:3031/dashboards.js' | |
browser: chrome | |
config-file: test/cypress/dashboards/config.mjs | |
install: false |