Skip to content

Commit

Permalink
Merge pull request #44 from COS301-SE-2024/Divergent-Caesar-patch-1
Browse files Browse the repository at this point in the history
Create testCoveralls.yml
  • Loading branch information
Divergent-Caesar authored Jun 2, 2024
2 parents 7e5add0 + ef8ca94 commit 41da7c4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/testCoveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on: ["push", "pull_request"]

name: Test Coveralls

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v1

- 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: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit 41da7c4

Please sign in to comment.