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

Improve test coverage ⬆️ 🧪 #54

Merged
merged 6 commits into from
Oct 19, 2022
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
7 changes: 6 additions & 1 deletion .github/linters/.jscpd.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"threshold": 0,
"reporters": ["consoleFull"],
"ignore": ["**/__snapshots__/**", "**/fixtures/**", ".mergify.yml"],
"ignore": [
"**/__snapshots__/**",
"**/fixtures/**",
"**/dist/**",
".mergify.yml"
],
"absolute": true
}
8 changes: 4 additions & 4 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ jobs:
- uses: actions/checkout@v3

- name: Set Node.js 18.x
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm ci
run: yarn install

- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
yarn run build
yarn run package

- name: Compare the expected and actual dist/ directories
run: |
Expand Down
4 changes: 2 additions & 2 deletions dist/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/app.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/config.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/config.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading