Skip to content

Commit 38a3311

Browse files
authored
Merge pull request #1 from thoughtspot/main
- added node 18.15
2 parents 06eff02 + bfd947a commit 38a3311

File tree

5 files changed

+49
-47
lines changed

5 files changed

+49
-47
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2323
- uses: actions/checkout@v3
2424

25-
# Use NodeJS v16.19.0
25+
# Use NodeJS v18.15.0
2626
- uses: actions/setup-node@v3
2727
with:
28-
node-version: '16.19.0'
28+
node-version: '18.15.0'
2929

3030
# Run npm install
3131
- name: Run npm install
@@ -43,7 +43,7 @@ jobs:
4343
- uses: 5monkeys/cobertura-action@master
4444
continue-on-error: true
4545
with:
46-
path: coverage/sdk/*.xml
46+
path: coverage/sdk/cobertura-coverage.xml
4747
repo_token: ${{ secrets.GITHUB_TOKEN }}
4848
minimum_coverage: 0
4949

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
example/
2-
**/*.spec.*
2+
**/*.spec.*
3+
ReadMe.md

jest.config.sdk.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
lines: 92,
1313
},
1414
},
15+
coverageReporters: ['html', 'text', 'text-summary', 'cobertura'],
1516
testPathIgnorePatterns: ['/lib/', '/docs/', '/cjs/'],
1617
testMatch: ['<rootDir>/src/**/*.spec.(ts|tsx)'],
1718
setupFilesAfterEnv: ['<rootDir>/jest-setup.js'],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thoughtspot/ts-chart-sdk",
3-
"private": true,
3+
"private": false,
44
"version": "0.0.1-alpha",
55
"module": "lib/index",
66
"main": "lib/index",

pnpm-lock.yaml

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)