Skip to content

⬆️ Bump svgo from 4.0.0 to 4.0.1 #31

⬆️ Bump svgo from 4.0.0 to 4.0.1

⬆️ Bump svgo from 4.0.0 to 4.0.1 #31

Workflow file for this run

name: Quality Checks
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
quality:
name: Linting and Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npm run lint:format
- name: Run Stylelint
run: npm run lint:css
- name: Run ESLint
run: npm run lint:js
- name: Build site
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: site-build
path: _site/
retention-days: 7