Skip to content

feat: Upgrade ESLint to 9.17 & Prettier to 3.4 & associated dependencies to latest-ish #20

feat: Upgrade ESLint to 9.17 & Prettier to 3.4 & associated dependencies to latest-ish

feat: Upgrade ESLint to 9.17 & Prettier to 3.4 & associated dependencies to latest-ish #20

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out Repo
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
- name: Set up Node.JS
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Project
run: pnpm build
- name: Run Tests
run: pnpm test