From d9cec2aa5e7012f7c2d873b96382b1fda9bf1353 Mon Sep 17 00:00:00 2001 From: Roberto Montalti Date: Wed, 26 Jun 2024 10:14:06 +0200 Subject: [PATCH] chore: include bb pipeline def --- bitbucket-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 0000000..bfcd3e0 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,12 @@ +image: node:20 + +pipelines: + default: + - step: + name: Gen2E CI + caches: + - node + script: + - npm ci --include=optional + - npm run build + - npm test \ No newline at end of file