We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031f0e3 commit 837527cCopy full SHA for 837527c
.github/workflows/test.yml
@@ -23,6 +23,16 @@ jobs:
23
- name: Install dependencies
24
run: npm install
25
26
+ - name: Check TypeScript compilation is up to date
27
+ run: |
28
+ npm run tsc
29
+ if [ -n "$(git status --porcelain)" ]; then
30
+ echo "Error: Files have changed after running 'npm run tsc'. Please run 'npm run tsc' locally and commit the changes."
31
+ git status
32
+ git diff
33
+ exit 1
34
+ fi
35
+
36
- name: Setup config.json
37
run: echo '{"token":"","port":"90","repo":"highcharts/highcharts"}' > config.json
38
0 commit comments