Skip to content

Commit

Permalink
Upgrade used GitHub actions and node version on the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed May 5, 2023
1 parent 5d1b084 commit 883b776
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.4.0]
node-version: ['18.x']
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 883b776

Please sign in to comment.