Skip to content

Commit

Permalink
ci: run typecheck (#436)
Browse files Browse the repository at this point in the history
Related to #430
  • Loading branch information
simPod authored Jun 3, 2023
1 parent 877f672 commit 0d7c6f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Install dependencies
run: yarn install --immutable

- name: Check types
run: yarn run typecheck

- name: Build and test frontend
run: yarn build

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"version": "0.6.2",
"scripts": {
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"sign": "grafana-toolkit plugin:sign",
Expand All @@ -16,7 +15,8 @@
"prettier:check": "prettier --list-different \"**/*.{ts,tsx,scss}\"",
"prettier:write": "yarn run prettier:check --write",
"release:minor": "npm version minor && yarn run build-sign-release",
"release:patch": "npm version patch && yarn run build-sign-release"
"release:patch": "npm version patch && yarn run build-sign-release",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0d7c6f3

Please sign in to comment.