Skip to content

Commit

Permalink
Update dependencies (#29)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update nodejs.yml

* Move deps

* Fix gmod/bam

* Revert version bump
  • Loading branch information
alexander-veit authored Apr 14, 2023
1 parent 0372c3e commit 601790b
Show file tree
Hide file tree
Showing 8 changed files with 20,470 additions and 10,792 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 16
- run: sudo apt-get install xvfb
- run: npm ci
- run: npm run build --if-present
- run: xvfb-run --auto-servernum npm run test
env:
CI: true


15 changes: 6 additions & 9 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,22 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
- run: sudo apt-get install xvfb
- run: npm ci
- run: npm run build --if-present
- run: xvfb-run --auto-servernum npm run test
env:
CI: true

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run prerelease
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Create Release
id: create_release
uses: actions/create-release@v1
uses: actions/create-release@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v1.5.0

- Update dependencies

v1.4.1

- Fix alignment issue

v1.4.0

- When hovering over the coverage, the genomic range that is covered by the bar is now displayed
Expand Down
Loading

0 comments on commit 601790b

Please sign in to comment.