Skip to content

Commit

Permalink
Merge pull request #34 from biothings/typescript
Browse files Browse the repository at this point in the history
Migrate to new build system/support typescript migration
  • Loading branch information
tokebe authored Oct 24, 2023
2 parents c31f19f + a61ff4a commit 9895ae8
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 15,517 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/coverage.yml

This file was deleted.

17 changes: 11 additions & 6 deletions .github/workflows/test_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@ jobs:

- uses: actions/checkout@v1

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x

- name: npm install, generate coverage report
- name: Use pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: pnpm install, generate coverage report
run: |
npm ci
npm run test-cov
pnpm i
pnpm run test-cov
- name: Send coverage report to codecov for visualization
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A nodejs library for manipulating BioLink Model.
## 💾 Install

```bash
npm i biolink-model
pnpm i biolink-model
```

## 📐 Usage
Expand Down
Loading

0 comments on commit 9895ae8

Please sign in to comment.