Adding build to the pipeline
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-05-02 11:51:00 -04:00
parent 92d43edd7a
commit 0a9d37c9e8
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@ steps:
commands: commands:
- yarn lint - yarn lint
- name: Build
image: node:latest
commands:
- yarn build
trigger: trigger:
branch: branch:
- main - main

View File

@@ -6,7 +6,7 @@
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"noImplicitAny": true, "noImplicitAny": true,
"outDir": "./dist/", "outDir": "./dist/",
"rootDirs": ["src", "../"], "rootDirs": ["lib", "../"],
"sourceMap": true "sourceMap": true
} }
} }