From ecfa58a3a34eb31afc5fd134e47b41e7fe571080 Mon Sep 17 00:00:00 2001 From: Alexandre Batistella Bellas Date: Tue, 19 Dec 2023 19:24:27 -0300 Subject: [PATCH] ci: corrigir workflow de teste TS --- .github/workflows/on-commit-test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/on-commit-test.yaml b/.github/workflows/on-commit-test.yaml index 4618f94..33abe9d 100644 --- a/.github/workflows/on-commit-test.yaml +++ b/.github/workflows/on-commit-test.yaml @@ -12,10 +12,13 @@ jobs: node-version: 20 - name: Install dependencies + working-directory: ./typescript run: npm install - name: Build project + working-directory: ./typescript run: npm run build - name: Execute tests + working-directory: ./typescript run: npm run test