fix(workflow): Corrected Docker image references and package scope in YAML workflows for compatibility.
This commit is contained in:
@ -2,8 +2,4 @@ import * as tsclass from '@tsclass/tsclass';
|
||||
import * as smartfile from '@push.rocks/smartfile';
|
||||
import * as path from 'path';
|
||||
|
||||
export {
|
||||
tsclass,
|
||||
smartfile,
|
||||
path,
|
||||
}
|
||||
export { tsclass, smartfile, path };
|
||||
|
@ -113,7 +113,7 @@ tap.test('should create an invoice', async () => {
|
||||
const pdfResult = await testPdfServiceInstance.createPdfFromLetterObject(optionsArg);
|
||||
await plugins.smartfile.memory.toFs(
|
||||
Buffer.from(pdfResult.buffer),
|
||||
plugins.path.join(paths.nogitDir, `test-${counter++}.pdf`)
|
||||
plugins.path.join(paths.nogitDir, `test-${counter++}.pdf`),
|
||||
);
|
||||
};
|
||||
await saveResult({
|
||||
|
Reference in New Issue
Block a user