[pull] master from highcharts:master #1069
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
name: Highcharts | |
on: | |
push: | |
branches: [ 'master' ] | |
pull_request: | |
branches: [ 'master' ] | |
paths: | |
- 'css/**' | |
- 'samples/**' | |
- '!samples/dashboards/**' | |
- '!samples/data-grid/**' | |
- 'test/**' | |
- 'ts/**' | |
- '!ts/Dashboards/**' | |
- '!ts/DataGrid/**' | |
- '!ts/masters-dashboards/**' | |
- '.github/workflows/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
testBrowserstack: | |
description: 'Whether to run Browserstack tests' | |
required: false | |
default: false | |
type: boolean | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test_headless: | |
name: Headless tests | |
uses: ./.github/workflows/highcharts-headless.yml | |
test_browserstack: | |
name: Browserstack tests | |
uses: ./.github/workflows/highcharts-browserstack.yml | |
if: ${{ inputs.testBrowserstack }} | |
secrets: | |
BROWSERSTACK_KEY: ${{secrets.BROWSERSTACK_KEY}} | |
BROWSERSTACK_USER: ${{secrets.BROWSERSTACK_USER}} | |
monitor_webpack: | |
name: Webpack monitoring | |
uses: ./.github/workflows/highcharts-webpack.yml | |
secrets: | |
PR_COMMENT_TOKEN: ${{secrets.PR_COMMENT_TOKEN}} |