Skip to content

Commit

Permalink
replace tap with node --test
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed May 6, 2024
1 parent 9eadbf4 commit 3c64692
Show file tree
Hide file tree
Showing 8 changed files with 171 additions and 6,193 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test Coverage

on:
push:
pull_request:

env:
CI: true
node-version: lts/*

jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
name: Node ${{ env.node-version }}
with:
node-version: ${{ env.node-version }}

- uses: actions/checkout@v4

- run: npm install

- name: run coverage
run: npx -y c8 --reporter=lcov npm test
env:
NODE_ENV: cov

- name: codecov
uses: codecov/codecov-action@v2

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

## 2024-04-29 - 5.0.1

- replace tap with node --test
- test: replace tests.xml with tests.json (#72)
- chore: exclude tests and dotfiles from publishing (#70)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "email-addresses",
"version": "5.0.0",
"version": "5.0.1",
"homepage": "https://github.com/jackbearheart/email-addresses",
"authors": [
"Jack Bearheart <[email protected]>"
Expand Down
Loading

0 comments on commit 3c64692

Please sign in to comment.