Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Coveralls CI Integration #315

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

jobs:
certify:
lint:
name: Lint Changes
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

jobs:
certify:
test:
name: Test Changes
runs-on: ubuntu-latest
steps:
Expand All @@ -43,3 +43,6 @@ jobs:

- name: Run Jest
run: npm run test:ci

- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "TZ=UTC react-scripts test",
"test:ci": "TZ=UTC CI=true react-scripts test --passWithNoTests",
"test:ci": "TZ=UTC CI=true react-scripts test --passWithNoTests --coverage",
"eject": "react-scripts eject",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint --fix . --ignore-path .gitignore",
Expand Down
Loading