Skip to content

Commit

Permalink
Fix ci test files
Browse files Browse the repository at this point in the history
  • Loading branch information
frozzare committed Mar 14, 2024
1 parent 04c2f16 commit 3469ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinefile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {
await build(buildOptions('esm'));
},
test: async (args) => {
const files = isCI ? ['./dist/cjs', './dist/esm'] : ['./src'];
const files = isCI ? [__dirname + '/dist/cjs', __dirname +'/dist/esm'] : ['./src'];

await series(
files.map((file) => async () => {
Expand Down

0 comments on commit 3469ff8

Please sign in to comment.