We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e3df78 commit 43b3902Copy full SHA for 43b3902
4 files changed
.github/workflows/pipeline.yaml
@@ -15,7 +15,7 @@ jobs:
15
- name: Set up Node.js
16
uses: actions/setup-node@v3
17
with:
18
- node-version: 16
+ node-version: 24
19
20
- name: Install dependencies
21
run: npm install
index.js
@@ -0,0 +1,3 @@
1
+console.log("Hello Kenny!")
2
+console.log("Hello Hanna")
3
+
package.json
@@ -4,7 +4,8 @@
4
"description": "",
5
"main": "index.js",
6
"scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
+ "run": "node index.js",
8
+ "test": "node test.js"
9
},
10
"repository": {
11
"type": "git",
test.js
@@ -0,0 +1,5 @@
+console.log('Starting tests..');
+setTimeout(() => console.log('Waiting 3 seconds..'), 3000);
+console.log('Tests complete!');
0 commit comments