From 21e444f72ddb3112c3e87b99a64f83a881cac2c3 Mon Sep 17 00:00:00 2001 From: Rob Koch Date: Mon, 27 Mar 2023 17:47:37 -0400 Subject: [PATCH] add funding.yml --- .github/FUNDING.yml | 2 ++ .github/workflows/playwright.yml | 27 --------------------------- 2 files changed, 2 insertions(+), 27 deletions(-) create mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/playwright.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..24be379 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ + +github: kochrt \ No newline at end of file diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml deleted file mode 100644 index 041160c..0000000 --- a/.github/workflows/playwright.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Playwright Tests -on: - push: - branches: [ main, master ] - pull_request: - branches: [ main, master ] -jobs: - test: - timeout-minutes: 60 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - - name: Install dependencies - run: npm ci - - name: Install Playwright Browsers - run: npx playwright install --with-deps - - name: Run Playwright tests - run: npx playwright test - - uses: actions/upload-artifact@v3 - if: always() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30