Add client linting to GitHub Actions workflow
Enhance CI/CD pipeline by introducing a new job to run ESLint on the client application. This ensures code quality and consistency for the frontend codebase.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<template>
|
||||
<slot v-if="!error" />
|
||||
<slot
|
||||
v-else
|
||||
name="error"
|
||||
:error="error"
|
||||
:clear-error="clearError"
|
||||
/>
|
||||
</template>
|
||||
<slot v-if="!error" />
|
||||
<slot
|
||||
v-else
|
||||
name="error"
|
||||
:error="error"
|
||||
:clear-error="clearError"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const error = ref()
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
defineProps({
|
||||
name: {
|
||||
type: String,
|
||||
default: "slideInUp"
|
||||
|
||||
Reference in New Issue
Block a user