Skip to content

Bump prettier from 3.4.2 to 3.5.3 #443

Bump prettier from 3.4.2 to 3.5.3

Bump prettier from 3.4.2 to 3.5.3 #443

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build application
run: npm run build --if-present
- name: Run tests
run: npm test