From 67aa57626d8328f281dfbf31839745a4ac828da5 Mon Sep 17 00:00:00 2001 From: taldev86 Date: Tue, 19 Mar 2024 01:58:15 -0700 Subject: [PATCH 1/2] Second commit --- db.json | 1 + 1 file changed, 1 insertion(+) diff --git a/db.json b/db.json index 7389028ad..ad2593ae9 100644 --- a/db.json +++ b/db.json @@ -6,4 +6,5 @@ { "id": 1, "body": "some comment", "postId": 1 } ], "profile": { "name": "typicode" } + //Post } From 611a9f274df3044e8eb99b9859c40db576f52322 Mon Sep 17 00:00:00 2001 From: taldev86 Date: Tue, 19 Mar 2024 02:00:43 -0700 Subject: [PATCH 2/2] New branch --- appveyor - Copy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 appveyor - Copy.yml diff --git a/appveyor - Copy.yml b/appveyor - Copy.yml new file mode 100644 index 000000000..5fef32bbf --- /dev/null +++ b/appveyor - Copy.yml @@ -0,0 +1,21 @@ +# Test against this version of Node.js +environment: + nodejs_version: "7" + +# Install scripts. (runs after repo cloning) +install: + # Get the latest stable version of Node.js + - ps: Install-Product node $env:nodejs_version + # install modules + - npm install + +# Post-install test scripts. +test_script: + # Output useful info for debugging. + - node --version + - npm --version + # run tests + - npm test + +# Don't actually build. +build: off