Skip to content

Commit 2b5ea98

Browse files
committed
try to fix ci
1 parent 028eeb2 commit 2b5ea98

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.github/workflows/ci_apps_cli.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- run: npm i
19+
- run: npm run build
20+
working-directory: ./packages/utils
21+
- run: npm run build
22+
working-directory: ./packages/components
1923
- run: npm run lint
2024

2125
typecheck:
@@ -38,6 +42,10 @@ jobs:
3842
steps:
3943
- uses: actions/checkout@v4
4044
- run: npm i
45+
- run: npm run build
46+
working-directory: ./packages/utils
47+
- run: npm run build
48+
working-directory: ./packages/components
4149
- run: npm run coverage
4250

4351
buildcheck:

.github/workflows/ci_apps_hyparquet_demo.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- run: npm i
18+
- run: npm run build
19+
working-directory: ./packages/utils
1820
- run: npm run lint
1921

2022
typecheck:

.github/workflows/ci_packages_components.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- run: npm i
18+
- run: npm run build
19+
working-directory: ./packages/utils
1820
- run: npm run lint
1921

2022
typecheck:
@@ -31,6 +33,8 @@ jobs:
3133
steps:
3234
- uses: actions/checkout@v4
3335
- run: npm i
36+
- run: npm run build
37+
working-directory: ./packages/utils
3438
- run: npm run coverage
3539

3640
buildcheck:

packages/components/test/package.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('package.json', () => {
1515
const { dependencies, devDependencies } = packageJson
1616
const allDependencies = { ...dependencies, ...devDependencies }
1717
/// peer dependencies are not checked, because the user might have different versions
18-
Object.values(allDependencies).forEach(version => {
18+
Object.entries(allDependencies).filter(([name]) => !name.startsWith('@hyparam/')).forEach(([, version]) => {
1919
expect(version).toMatch(/^\d+\.\d+\.\d+$/)
2020
})
2121
})

0 commit comments

Comments
 (0)