Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
name: CI
on:
push:
Expand All @@ -10,7 +9,7 @@ env:
CI: true

jobs:
build:
test-and-build:
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -30,7 +29,23 @@ jobs:
- run: npm test
- run: npm run build

- name: Upload code coverage
uses: coverallsapp/github-action@master
- uses: actions/upload-artifact@v3
if: matrix.node-version == '18'
with:
name: code-coverage
path: coverage

upload-code-coverage:
name: 'Upload code coverage'
needs: ['test-and-build']
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v3
with:
name: code-coverage
path: coverage

- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion .github/workflows/dependebot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: dependabot-auto-merge
name: Dependabot auto merge

on:
pull_request:

jobs:
dependabot-auto-merge:
name: 'Dependabot auto merge'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
name: Release new version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down