Skip to content

fix: icon rendering in MockupEditor and MockupListPage (#17) (#18) #63

fix: icon rendering in MockupEditor and MockupListPage (#17) (#18)

fix: icon rendering in MockupEditor and MockupListPage (#17) (#18) #63

Workflow file for this run

name: Quality Gate
on:
push:
pull_request:
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: |
package-lock.json
scaffold/spec-site/package-lock.json
- name: Install root dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test