Skip to content

Bump prettier from 3.5.3 to 3.6.2 #52

Bump prettier from 3.5.3 to 3.6.2

Bump prettier from 3.5.3 to 3.6.2 #52

Workflow file for this run

name: 🧪 Continuous Integration
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
name: 🧪 CI - Test, Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: 📦 Install dependencies
run: npm ci
- name: ✅ Run tests
run: npm test
- name: 🧹 Lint code
run: npm run lint
- name: 🔨 Build project
run: npm run build