From b7c911534c9abd1a48eafb088bdd9c3cddb3da62 Mon Sep 17 00:00:00 2001 From: Daniel D Orlando Date: Tue, 28 Mar 2023 09:27:49 -0700 Subject: [PATCH] use node 18 --- .github/workflows/playwright.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5bbad93cfc..29c87ca950 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -5,14 +5,15 @@ on: pull_request: branches: [ main, master ] jobs: - test: + tests_e2e: + name: Run end-to-end tests timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Install dependencies run: npm ci - name: Install Playwright Browsers