-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61bd527
commit 120b3b2
Showing
2 changed files
with
21 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
name: Code Coverage Summary | ||
name: test | ||
on: pull_request | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: irongut/CodeCoverageSummary@v1.3.0 | ||
# Checkout the Repo | ||
- uses: actions/checkout@v2 | ||
|
||
# Install Node 18 | ||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 18 | ||
|
||
# Install dependencies | ||
- run: npm ci | ||
|
||
# Run tests | ||
- run: npm run test:coverage | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v4.0.1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
slug: Exotica0122/Typefast |
This file was deleted.
Oops, something went wrong.