Skip to content

Bump @types/node from 20.11.16 to 22.0.2 #46

Bump @types/node from 20.11.16 to 22.0.2

Bump @types/node from 20.11.16 to 22.0.2 #46

Workflow file for this run

name: PR Tests
on:
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g pnpm
- run: pnpm i
- run: pnpm lint
- run: pnpm test
- name: Save Cypress Output
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: cypress-output
path: |
cypress/screenshots/
cypress/videos/
cypress/downloads/
retention-days: 7