Skip to content

Commit caf8876

Browse files
committed
Initial commit
0 parents  commit caf8876

10 files changed

+3092
-0
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

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules
2+
/coverage
3+
/.nyc_output
4+
/dist

.nycrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"reporter": [
3+
"lcov"
4+
],
5+
"all": true,
6+
"exclude": [
7+
"node_modules",
8+
"coverage",
9+
"test"
10+
],
11+
"extension": [
12+
".ts",
13+
".tsx"
14+
]
15+
}

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Code Climate, Inc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Qlty Typescript Coverage Example
2+
3+
[Qlty](https://example.com) is a Code Health Platform with support for code coverage.
4+
5+
This repository is an example using Qlty to track code coverage for a Typescript project. Coverage data is generated during test suite run and then uploaded to Qlty.
6+
7+
This repository uses [Mocha](https://github.com/mochajs/mocha) for testing, [mocha lcov reporter](https://github.com/StevenLooman/mocha-lcov-reporter) and [nyc](https://github.com/istanbuljs/nyc) generating and outputing coverage report.
8+
9+
## Requirements
10+
11+
- Node 18 or above
12+
- [Mocha](https://github.com/mochajs/mocha)
13+
- [Mocha lcov reporter](https://github.com/StevenLooman/mocha-lcov-reporter)
14+
- [Nyc](https://github.com/istanbuljs/nyc)
15+
- Run tests with `npm test`
16+
- An account on Qlty (free for open source)
17+
- `QLTY_COVERAGE_TOKEN` is set as a GitHub Actions [repository secret](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository)
18+
19+
## Set up
20+
21+
See [`.github/workflows/main.yml`](./.github/workflows/main.yml) in this repository for a basic configuration.
22+
23+
## Documentation
24+
25+
- [Advanced code coverage configuration](https://example.com)
26+
- [Alternative supported CI providers](https://example.com)
27+
28+
## Help and feedback
29+
30+
Join the our [Slack Community](https://example.com) for help and to provide feedback that we'll use to improve Qlty.
31+
32+
## License
33+
34+
[MIT License](./LICENSE.md)

0 commit comments

Comments
 (0)