Skip to content

Commit 8248e37

Browse files
authored
Use node 22 and npm in build step (#119)
fix ci
1 parent d53454b commit 8248e37

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/release-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 18
15-
- run: yarn
16-
- run: yarn build
14+
node-version: 22
15+
- run: npm install
16+
- run: npm run build
1717

1818
publish-gpr:
1919
needs: build
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: actions/setup-node@v3
2727
with:
28-
node-version: 18
28+
node-version: 22
2929
registry-url: "https://registry.npmjs.org"
3030
- run: npm install
3131
- run: npm run build

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@authsignal/browser",
3-
"version": "1.14.0",
3+
"version": "1.14.1",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -55,6 +55,5 @@
5555
},
5656
"files": [
5757
"dist"
58-
],
59-
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
58+
]
6059
}

0 commit comments

Comments
 (0)