[Snyk] Upgrade highcharts-angular from 3.0.0 to 3.1.2 #418
Workflow file for this run
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: Build | |
on: | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install modules | |
run: npm install | |
- name: Tests | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
run: npm run test:headless | |
- name: Run Prod Build | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
run: npm run build:prod |