We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb468a commit 07d65fcCopy full SHA for 07d65fc
2 files changed
.github/workflows/test.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
matrix:
14
os: [ubuntu-latest, macos-latest, windows-latest]
15
- node-version: ['18', '20']
+ node-version: ['20']
16
17
steps:
18
- name: Checkout code
@@ -25,7 +25,11 @@ jobs:
25
26
- name: Install dependencies
27
run: |
28
- npm ci
+ npm ci --ignore-scripts
29
+
30
+ - name: Build package
31
+ run: |
32
+ npm run build
33
34
- name: Install Playwright browsers
35
package.json
@@ -51,6 +51,6 @@
51
"homepage": "https://github.com/SentienceAPI/sentience-ts#readme",
52
"license": "MIT",
53
"engines": {
54
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
55
}
56
0 commit comments