Skip to content

fix: prevent text logo image auto-scaling #76

fix: prevent text logo image auto-scaling

fix: prevent text logo image auto-scaling #76

Workflow file for this run

name: ci
on:
push:
branches: [main, master, new-vue3]
pull_request:
branches: [main, master, new-vue3]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run type-check
- name: Unit tests
run: npm run test:unit
- name: Build
run: npm run build