From 5594c3268a6f1a155d55c7e7d341b45c81334be2 Mon Sep 17 00:00:00 2001 From: Vahn Gomes Date: Tue, 21 Nov 2023 13:20:59 -0500 Subject: [PATCH] Refactor GitHub Actions workflow --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4866e4d..7e05f1b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,9 @@ jobs: uses: actions/setup-node@v3 with: node-version: "18.x" - - run: npm ci - - run: npm run build --if-present - - run: npm test + - name: ๐Ÿ“ฆ install + run: npm ci + - name: ๐Ÿ—๏ธ build + run: npm run build --if-present + - name: ๐Ÿงช test + run: npm test