Skip to content

Commit

Permalink
Added codecov workflow & easignore dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
0x0is1 committed Oct 13, 2024
1 parent e64bfa8 commit 7f34e61
Show file tree
Hide file tree
Showing 4 changed files with 18,152 additions and 15,117 deletions.
5 changes: 4 additions & 1 deletion .easignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ npm-debug.*
*.orig.*
web-build/
web-report/
/android
/android
test-archive
.easignore
dist
28 changes: 28 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run tests and upload coverage

on:
push

jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Node
uses: actions/setup-node@v4

- name: Install dependencies
run: npm install

- name: Run tests
run: npx jest --coverage

- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Loading

0 comments on commit 7f34e61

Please sign in to comment.