Skip to content

feat: updated the pnpm ci setup to use pnpm version 10 insted of latest #8

feat: updated the pnpm ci setup to use pnpm version 10 insted of latest

feat: updated the pnpm ci setup to use pnpm version 10 insted of latest #8

Workflow file for this run

name: Accessibility Checks

Check failure on line 1 in .github/workflows/a11y.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/a11y.yml

Invalid workflow file

(Line: 31, Col: 9): There's not enough info to determine what you meant. Add one of these properties: cancel, run, shell, uses, wait, wait-all, with, working-directory
on:
pull_request:
branches:
- develop
- main
jobs:
accessibility:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run JSX Accessibility Lint
# run: pnpm eslint . --ext .js,.jsx,.ts,.tsx
- name: Build App
run: pnpm vite build