Skip to content

Commit

Permalink
Merge pull request #88 from axi92/dependabot/npm_and_yarn/npm-check-u…
Browse files Browse the repository at this point in the history
…pdates-16.14.12

Bump npm-check-updates from 16.14.11 to 16.14.12
  • Loading branch information
axi92 authored Jan 1, 2024
2 parents fb7bfa9 + eafae72 commit 372dc0b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [16.x, 18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<img alt="npm" src="https://img.shields.io/npm/v/steam-workshop-scraper">
</a>
<img alt="npm bundle size" src="https://img.shields.io/bundlephobia/minzip/steam-workshop-scraper">
<img src="https://img.shields.io/badge/npm version-%3E%3D6.14.6-blue.svg" />
<img src="https://img.shields.io/badge/node version-%3E%3D12.13.1-blue.svg" />
<img src="https://img.shields.io/badge/npm%20version-%3E%3D8.x.x-blue.svg" />
<img src="https://img.shields.io/badge/node version-%3E%3D16.x.x-blue.svg" />
<a href="https://github.com/axi92/steam-workshop-scraper#readme" target="_blank">
<img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" />
</a>
Expand All @@ -24,8 +24,8 @@
## Prerequisites

- npm >=6.14.x ?
- node >=14.x
- npm >=8.x.x ?
- node >=16.x

## Install

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ describe('SteamWorkshopScraper', function () {
});
});

it('GetInfo active updated mod', async function () {
it('GetInfo updated mod', async function () {
await sws.GetInfo(731604991).then(function (data) {
assert.equal(data.title, 'Structures Plus (S+)');
assert.equal(data.timePublished, '2016-07-26T02:40:00.000+00:00');
assert.equal(data.timeUpdated.includes(DateTime.now().year), true);
assert.equal(data.timeUpdated.includes(DateTime.now().year-1), true);
});
});

Expand Down

0 comments on commit 372dc0b

Please sign in to comment.