From 70cac82d786d54a012e4a4089f55f64ccc2e8331 Mon Sep 17 00:00:00 2001 From: Allan Date: Mon, 10 Jul 2023 20:00:11 +0100 Subject: [PATCH] chore: updating yaml command to use npx @sasjs/cli --- .github/workflows/run-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ced41c5..0f897f8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -51,7 +51,7 @@ jobs: run: npm ci - name: Check code style (aborts if errors found) - run: npx sasjs lint + run: npx @sasjs/cli lint - name: Add client run: echo "CLIENT=${{secrets.SAS9_4GL_IO_CLIENT}}"> .env.server @@ -60,10 +60,10 @@ jobs: run: echo "ACCESS_TOKEN=${{secrets.SAS9_4GL_IO_ACCESS_TOKEN}}" >> .env.server - name: Build & Deploy Project to SAS server - run: npx sasjs cbd -t server + run: npx @sasjs/cli cbd -t server - name: Run all tests - run: npx sasjs test -t server + run: npx @sasjs/cli test -t server env: CI: true CLIENT: ${{secrets.CLIENT}}