From 3ed90c9e8a20c21da4de644d102112265b092d38 Mon Sep 17 00:00:00 2001 From: Chaitanya Kesanapalli <7126460+ckesanapalli@users.noreply.github.com> Date: Mon, 11 Dec 2023 20:24:13 -0600 Subject: [PATCH] Create coverage.yml --- .github/workflows/coverage.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..cf55d4c --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,24 @@ + +on: push + +name: Coveralls + +jobs: + test: + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v3 + + - name: Use Node.js 16.x + uses: actions/setup-node@v3 + with: + node-version: 16.x + + - name: npm install, make test-coverage + run: | + npm install + make test-coverage + + - name: Report Coveralls + uses: coverallsapp/github-action@v2