Skip to content

Update UiGallery.vue #21

Update UiGallery.vue

Update UiGallery.vue #21

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run Formatter
run: npm run format
- name: Build project
run: npm run build