diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 18101cc..798acd8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,14 +9,15 @@ on: - main jobs: - e2e-tests: + tests: runs-on: ubuntu-latest # or macos-latest, windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: 20 + cache: npm - name: Install dependencies run: npm ci - name: Install playwright browsers