diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index cc400c7..bbcb874 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -36,31 +36,12 @@ jobs: run: npm ci - name: Run tests run: npm test - test_win: - name: "Windows" - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 16 - - uses: microsoft/playwright-github-action@v1 - - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: Install dependencies - run: npm ci - - name: Run tests - run: npm test tag: name: "Publishing release" if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' needs: - test_linux - - test_win + # - test_win runs-on: ubuntu-latest steps: - name: Checkout code