From 67c326a0480ba5dee5886f4922e2727c0e3e23af Mon Sep 17 00:00:00 2001 From: Guilherme Carvalho <77246+gvc@users.noreply.github.com> Date: Mon, 4 May 2026 17:44:43 -0300 Subject: [PATCH] chore: add test execution to CI pipeline --- .vtex/deployment.yaml | 3 +++ package.json | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.vtex/deployment.yaml b/.vtex/deployment.yaml index 7013558..3fcdb51 100644 --- a/.vtex/deployment.yaml +++ b/.vtex/deployment.yaml @@ -6,6 +6,9 @@ pipelines: - name: node-ci-v2 parameters: + nodeCommands: + - install + - test:coverage sonarProjectName: front.messages nodeVersion: 20-bookworm runtime: diff --git a/package.json b/package.json index 899882a..ce34d92 100644 --- a/package.json +++ b/package.json @@ -39,5 +39,8 @@ ], "author": "Breno Calazans ", "owner": "Afonso Praça ", - "license": "MIT" + "license": "MIT", + "scripts": { + "test:coverage": "echo \"no tests\" && exit 0" + } }