From 802620130038f21af0616613b14e18741fdfbf74 Mon Sep 17 00:00:00 2001 From: powerivq Date: Wed, 27 Mar 2024 20:42:33 -0700 Subject: [PATCH] Change test --- .github/workflows/test-default.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-default.yaml b/.github/workflows/test-default.yaml index ac8d30fb4e9..b1718888f17 100644 --- a/.github/workflows/test-default.yaml +++ b/.github/workflows/test-default.yaml @@ -7,7 +7,19 @@ jobs: test: runs-on: ubuntu-latest steps: + - name: Cloning repository + uses: actions/checkout@v4 - - name: 'Default' + - name: Setting up Node.js + uses: actions/setup-node@v4 + with: + node-version: 16 + cache: npm + + - name: Installing Node.js packages + run: npm ci + + - name: Running tests run: | - echo 'we require a job named "test", but not all pull requests trigger an action. So we created this small silly job named "test" that will always pass, just to make sure nothing hangs as a result of not triggering an actual job.' + npx gulp updateTestResources + npm run test:platform