Skip to content

Commit 3baaa7e

Browse files
committed
Test fail
1 parent cacfed2 commit 3baaa7e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
await github.rest.issues.createComment({ owner, repo, issue_number, body });
7272
}
7373
}
74-
7574
- name: Fail if lint failed
76-
if: steps.lint.outputs.exit_code != '0'
75+
if: steps.lint.outputs.exit_code != '0' && !cancelled()
7776
run: exit ${{ steps.lint.outputs.exit_code }}
77+
- name: Build
78+
run: next build --no-lint

src/app/blog/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { getBlogPosts } from '@/content/utils';
44
import { baseUrl } from '@/app/sitemap';
55
import { customComponents } from '@/mdx-components';
66
import ClientDate from '@/app/components/client-date';
7-
import { type ComponentType } from 'react';
7+
import { ComponentType } from 'react';
88

99
type BlogPostPageProps = {
1010
params: Promise<{

0 commit comments

Comments
 (0)