From beb2a48ee12d50fcdd7ca3916a23f8e7634953a0 Mon Sep 17 00:00:00 2001 From: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:51:33 +0100 Subject: [PATCH] update --- .github/workflows/test-ui.yaml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-ui.yaml b/.github/workflows/test-ui.yaml index cca1d96ba..1120972fd 100644 --- a/.github/workflows/test-ui.yaml +++ b/.github/workflows/test-ui.yaml @@ -6,13 +6,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Test using Node.js - uses: actions/setup-node@v1 - with: - node-version: '18' - - name: Run tests - working-directory: ./tests-ui - run: | - npm install - npm test \ No newline at end of file + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Run Tests + run: npm test + working-directory: ./tests-ui