Skip to content

docs: update README badges to include deploy pages workflow and reord… #16

docs: update README badges to include deploy pages workflow and reord…

docs: update README badges to include deploy pages workflow and reord… #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format Check
run: npm run format:check
- name: Build
run: npm run build
- name: Upload dist artifact
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v4
with:
name: dist-preview
path: dist