renovate: update dependency prettier to v3.2.1 #271
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository 🛒 | |
uses: actions/checkout@v3 | |
- name: Setup Node ⚙️ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.16.0" | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies 🔧 | |
# include devDependencies https://stackoverflow.com/a/64648870 | |
run: npm ci --audit=false --include=dev --include=optional --include=peer | |
- name: Build package 🏗️ | |
run: npm run build | |
- name: Lint package 🧹 | |
run: npm run lint:check | |
- name: Format package 📐 | |
run: npm run format:check | |
- name: Build docs 📖 | |
run: npm run docs:build |