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