File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1010 - run : npm i
1111 - run : npm run lint
1212
13+ typecheck :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v4
17+ - run : npm i
18+ - run : tsc
19+
1320 test :
1421 runs-on : ubuntu-latest
1522 steps :
Original file line number Diff line number Diff line change 2323 },
2424 "dependencies" : {
2525 "highlight.js" : " 11.10.0" ,
26- "@hyparam/components" : " 0.1.0 "
26+ "@hyparam/components" : " file:packages/components "
2727 },
2828 "devDependencies" : {
2929 "@rollup/plugin-commonjs" : " 28.0.1" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ describe('package.json', () => {
1414 it ( 'should have precise dependency versions' , ( ) => {
1515 const { dependencies, devDependencies } = packageJson
1616 const allDependencies = { ...dependencies , ...devDependencies }
17- Object . values ( allDependencies ) . forEach ( version => {
17+ Object . entries ( allDependencies ) . filter ( ( [ name ] ) => ! name . startsWith ( '@hyparam/' ) ) . forEach ( ( [ , version ] ) => {
1818 expect ( version ) . toMatch ( / ^ \d + \. \d + \. \d + $ / )
1919 } )
2020 } )
You can’t perform that action at this time.
0 commit comments