|
|
@ -13,13 +13,13 @@ jobs: |
|
|
|
|
|
|
|
|
strategy: |
|
|
strategy: |
|
|
matrix: |
|
|
matrix: |
|
|
node-version: [ '18' ] |
|
|
node-version: [ '24' ] |
|
|
|
|
|
|
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v4 |
|
|
- uses: actions/checkout@v5 |
|
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }} |
|
|
- name: Use Node.js ${{ matrix.node-version }} |
|
|
uses: actions/setup-node@v4 |
|
|
uses: actions/setup-node@v6 |
|
|
with: |
|
|
with: |
|
|
node-version: ${{ matrix.node-version }} |
|
|
node-version: ${{ matrix.node-version }} |
|
|
|
|
|
|
|
|
@ -29,6 +29,6 @@ jobs: |
|
|
run: npm test |
|
|
run: npm test |
|
|
|
|
|
|
|
|
- name: Upload coverage report to coveralls.io |
|
|
- name: Upload coverage report to coveralls.io |
|
|
uses: coverallsapp/github-action@master |
|
|
uses: coverallsapp/github-action@v2 |
|
|
with: |
|
|
with: |
|
|
github-token: ${{ secrets.GITHUB_TOKEN }} |
|
|
github-token: ${{ secrets.GITHUB_TOKEN }} |
|
|
|