Skip to content

Commit

Permalink
Upgrade used GitHub actions (#314)
Browse files Browse the repository at this point in the history
* Upgrade used GitHub actions and node version on the CI

* Remove explicit option passed to coverallsapp

* revert back to coverallsapp/github-action@v1

* bring back explicit path-to-lcov input

* use exact version for coveralsapp action

* Use node 11

* try to upgrade coverallsapp action again
  • Loading branch information
Andarist committed May 5, 2023
1 parent 5d1b084 commit d63e77e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Expand Up @@ -8,17 +8,17 @@ jobs:
node-version: [11.4.0]
steps:
- name: checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: setup ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: test
run: |
npm install
npm test
- name: report
uses: coverallsapp/github-action@v1.0.1
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
file: ./coverage/lcov.info

0 comments on commit d63e77e

Please sign in to comment.