feat: implemented prettier
All checks were successful
CI / build (push) Successful in 4s

This commit is contained in:
Pierre Tellier 2025-02-09 15:54:19 +01:00
parent 1dff7573ff
commit 0eab9a8063
3 changed files with 15 additions and 15 deletions

View File

@ -0,0 +1,15 @@
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: npm install prettier
- name: Run ESLint
working-directory: ./front/MyINPulse-front
run: npx prettier src --write

View File

View File

@ -1,15 +0,0 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>