Skip to content

Commit

Permalink
Merge pull request #1477 from finos/fdc3-for-web-impl-base-coverage
Browse files Browse the repository at this point in the history
Fdc3 for web impl base coverage
  • Loading branch information
robmoffat authored Dec 18, 2024
2 parents 38338f4 + 6f3bf05 commit 698586f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/base-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test coverage for main branch

on:
push:
branches:
- main
- fdc3-for-web-impl

jobs:
test_and_upload_coverage:
runs-on: ubuntu-latest
name: Test and upload coverage
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.ref }}
fetch-depth: 1000

- name: Run tests
run: |
npm i
npm run test
- name: Upload coverage artifact
uses: actions/upload-artifact@v2
with:
name: test-coverage-output
path: coverage

0 comments on commit 698586f

Please sign in to comment.