Only style on pull request (#25)

Co-authored-by: GitButler <gitbutler@gitbutler.com>
Co-authored-by: Team1280Programming <Team1280Programming@users.noreply.github.com>
This commit is contained in:
Team 1280 Programming Laptop 2024-02-19 13:28:46 -08:00 committed by GitHub
parent 9bfc1833b9
commit 12ca81cd68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
name: npm run format
on: [push, workflow_dispatch]
on: [pull_request, workflow_dispatch]
jobs:
style:

View file

@ -1,10 +1,10 @@
import { authors, affiliations } from '@/app/db/data'
import { notFound } from 'next/navigation'
import { affiliations, authors } from '@/app/db/data'
import cardEffects from '@/app/styles/cardEffects.module.css'
import { Zilla_Slab } from 'next/font/google'
import { Fragment } from 'react'
import Image from 'next/image'
import Link from 'next/link'
import cardEffects from '@/app/styles/cardEffects.module.css'
import { notFound } from 'next/navigation'
import { Fragment } from 'react'
const zillaSlab = Zilla_Slab({ subsets: ['latin'], weight: ['500'] })

View file

@ -1,6 +1,6 @@
import { documents } from '@/app/db/data'
import { notFound } from 'next/navigation'
import { Zilla_Slab } from 'next/font/google'
import { notFound } from 'next/navigation'
import { Fragment } from 'react'
import DocumentCard from '../components/DocumentCard'