From 4ceee80a9462c66b62e4a955a48ae1a48c4cdc75 Mon Sep 17 00:00:00 2001 From: Popov Aleksey Date: Fri, 13 Oct 2023 14:41:46 +0300 Subject: [PATCH] github-actions: added prepare action before test --- .github/workflows/test.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a23e80..baf6c5e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,15 +5,11 @@ jobs: test: name: test runs-on: windows-latest + environment: CI steps: - - name: Setup Node - uses: actions/setup-node@v2 + - uses: DevExpress/testcafe-build-system/actions/prepare@main with: node-version: '16' - - run: node -v - - name: Check out the repository - uses: actions/checkout@v2 - - name: Npm install - run: npm install + - run: npm ci --legacy-peer-deps - name: Run Tests run: npm run test