Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit 31d1ff7

Browse files
committed
Fix review comments
1 parent 69795d6 commit 31d1ff7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name: tests
33

44
on:
5-
pull_request:
65
push:
6+
branches: [master, develop]
77
workflow_dispatch:
88
inputs:
99
concurrency:
10-
group: dashboard-${{ github.ref }}
10+
group: ${{ github.workflow }}-${{ github.ref }}
1111
cancel-in-progress: true
1212

1313
jobs:
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-node@v2
2323
with:
24-
node-version: "12.22.0"
24+
node-version: "12.x"
2525
cache: "npm"
2626
- name: Install dependencies
2727
run: npm install

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"noEmit": true,
2525
"declaration": true
2626
},
27-
"include": ["./src/**/*", "src/vendor/dygraph-c91c859.min.js"],
27+
"include": ["./src/**/*"],
2828
"exclude": ["/node_modules/", "**/*.test.ts", "**/*.test.tsx"]
2929
}

0 commit comments

Comments
 (0)