Skip to content

Updating all dependencies #74

Updating all dependencies

Updating all dependencies #74

Workflow file for this run

name: PR Tests
on:
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: 22.x]

Check failure on line 12 in .github/workflows/pr-tests.yml

View workflow run for this annotation

GitHub Actions / PR Tests

Invalid workflow file

The workflow is not valid. .github/workflows/pr-tests.yml (Line: 12, Col: 23): Unexpected value '22.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