Skip to content

Commit e30b4a7

Browse files
committed
Create and upload coverage to qlty
1 parent fbc0ff6 commit e30b4a7

File tree

6 files changed

+416
-56
lines changed

6 files changed

+416
-56
lines changed

.github/workflows/main.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Main
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
actions: write
9+
contents: read
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node: [ 18 ]
17+
name: Node ${{ matrix.node }} sample
18+
steps:
19+
- name: Cancel Previous Runs
20+
uses: styfle/[email protected]
21+
22+
- name: Checkout repo
23+
uses: actions/checkout@v4
24+
25+
- name: Setup node
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: ${{ matrix.node }}
29+
30+
- name: Install dependencies
31+
run: npm install
32+
33+
- name: Run tests
34+
run: npm test
35+
36+
- uses: qltyai/qlty-action/coverage@main
37+
with:
38+
coverage-token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
39+
file: coverage/lcov.info

app/page.test.tsx

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { expect, test } from "vitest";
2-
import { render, screen } from "@testing-library/react";
3-
import Page from "./page";
1+
import { expect, test } from 'vitest'
2+
import { render, screen } from '@testing-library/react'
3+
import Page from '../app/page'
44

5-
test("App Router: Works with Server Components", () => {
6-
render(<Page />);
7-
expect(
8-
screen.getByRole("heading", { level: 1, name: "App Router" }),
9-
).toBeDefined();
10-
});
5+
test('Page', () => {
6+
render(<Page />)
7+
expect(screen.getByRole('heading', { level: 1, name: 'Home' })).toBeDefined()
8+
})

app/page.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
export const metadata = {
2-
title: "App Router",
3-
};
1+
import Link from 'next/link'
42

53
export default function Page() {
6-
return <h1>App Router</h1>;
4+
return (
5+
<div>
6+
<h1>Home</h1>
7+
<Link href="/about">About</Link>
8+
</div>
9+
)
710
}

0 commit comments

Comments
 (0)