Skip to content

Commit 1a22342

Browse files
committed
Intentionally downgrade package to test outdated check.
1 parent 2590994 commit 1a22342

4 files changed

Lines changed: 28 additions & 16 deletions

File tree

.github/workflows/browser.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3-
41
name: Build for Browser
52

63
on:
@@ -16,8 +13,7 @@ jobs:
1613

1714
strategy:
1815
matrix:
19-
node-version: [18.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16+
node-version: [25.x]
2117

2218
steps:
2319
- uses: actions/checkout@v3
@@ -27,7 +23,4 @@ jobs:
2723
node-version: ${{ matrix.node-version }}
2824
cache: 'npm'
2925
- run: npm ci
30-
# Don't run updateCheck for now
31-
#- run: npm run dev:updateCheck
3226
- run: npm run buildweb
33-
#- run: npm test

.github/workflows/node.js.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3-
41
name: Build for NodeJS
52

63
on:
@@ -17,7 +14,6 @@ jobs:
1714
strategy:
1815
matrix:
1916
node-version: [25.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2117

2218
steps:
2319
- uses: actions/checkout@v3
@@ -27,7 +23,4 @@ jobs:
2723
node-version: ${{ matrix.node-version }}
2824
cache: 'npm'
2925
- run: npm ci
30-
# Don't run updateCheck for now
31-
#- run: npm run dev:updateCheck
3226
- run: npm run build
33-
#- run: npm test

.github/workflows/outdated.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Check for outdated dependencies
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [25.x]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
cache: 'npm'
25+
- run: npm ci
26+
- run: npm outdated

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"homepage": "https://git.eusv.net/tgpholly/bufferStuff#readme",
3333
"devDependencies": {
3434
"@types/node": "^25.1.0",
35-
"npm-run-all": "^4.1.5",
35+
"npm-run-all": "4.1.4",
3636
"terser": "^5.46.0",
3737
"tsx": "^4.21.0",
3838
"typescript": "^5.9.3"

0 commit comments

Comments
 (0)