Skip to content

chore: bump prettier from 3.2.5 to 3.3.2 #421

chore: bump prettier from 3.2.5 to 3.3.2

chore: bump prettier from 3.2.5 to 3.3.2 #421

Workflow file for this run

name: Quality assurance
on:
pull_request:
branches: ["main"]
jobs:
qa:
name: Quality assurance
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test
- name: Build
run: |
npm run build