Skip to content

Commit 014a93f

Browse files
authored
Merge pull request #133 from GordonSmith/BUMP_VERSIONS
feat: Bump Versions
2 parents a568fe7 + 1d5be7d commit 014a93f

File tree

15 files changed

+3948
-9969
lines changed

15 files changed

+3948
-9969
lines changed
Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
name: Test PR
22

3-
on:
4-
push:
5-
branches: [trunk]
6-
pull_request:
7-
branches: [trunk]
3+
on: ["push", "pull_request"]
84

95
jobs:
106
build:
117
runs-on: ubuntu-20.04
128

139
steps:
1410
- uses: actions/checkout@v3
11+
1512
- uses: actions/setup-node@v2
1613
with:
1714
node-version: "16.x"
1815
registry-url: "https://registry.npmjs.org"
1916
scope: "@hpcc-js"
17+
2018
- run: npm ci
2119
- run: npm run lint
2220
- run: sudo apt-get update
@@ -29,3 +27,11 @@ jobs:
2927
- run: npm run test;
3028
env:
3129
CI: true
30+
31+
- run: npm run coverage
32+
- run: npm run coverage-report
33+
34+
- name: Coveralls
35+
uses: coverallsapp/github-action@master
36+
with:
37+
github-token: ${{ secrets.GITHUB_TOKEN }}

.nycrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-typescript",
3+
"exclude": [
4+
"build",
5+
"src/__tests__"
6+
]
7+
}

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
# @hpcc-js/wasm - Version 2
22

33
![Tests](https://github.com/hpcc-systems/hpcc-js-wasm/workflows/Test%20PR/badge.svg)
4+
[![Coverage Status](https://coveralls.io/repos/github/GordonSmith/hpcc-js-wasm/badge.svg?branch=BUMP_VERSIONS)](https://coveralls.io/github/GordonSmith/hpcc-js-wasm?branch=BUMP_VERSIONS)
45

56
**@hpcc-js/wasm is now an ESM by default package** - this is a good thing, but does require some breaking changes.
67

78
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
89
- [base91](https://base91.sourceforge.net/) - v0.6.0
9-
- [expat](https://libexpat.github.io/) - v2.4.9
10-
- [graphviz](https://www.graphviz.org/) - v7.0.1
10+
- [expat](https://libexpat.github.io/) - v2.5.0
11+
- [graphviz](https://www.graphviz.org/) - v7.0.2
1112
- [zstd](https://github.com/facebook/zstd) - v1.5.2
1213
- ...more to follow...
1314

1415
Built with:
15-
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.25
16+
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.26
1617

1718
## Homepage and Documents
1819

0 commit comments

Comments
 (0)