From 74862776063620233565bd175cc549ba44605945 Mon Sep 17 00:00:00 2001 From: Daniel Rauf Date: Tue, 15 Aug 2023 08:22:09 +0200 Subject: [PATCH] Delete nodejs.yml --- .github/workflows/nodejs.yml | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 8c6b6e6..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Node CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/playwright:next-jammy - - steps: - - uses: actions/checkout@v3 - - name: yarn lint and test - run: | - yarn install - yarn lint - yarn test - env: - CI: true - - name: Install Playwright Browsers - run: yarn playwright install --with-deps - - name: Run Playwright tests - run: HOME=/root yarn playwright test - - uses: actions/upload-artifact@v3 - if: failure() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 - - name: Build static page for deployment - if: github.ref_name == 'main' - run: yarn predeploy - - name: Deploy to GH Pages 🚀 - if: github.ref_name == 'main' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: build