From c9ba0db6fbdb426dbaab8e1322cb697f50017848 Mon Sep 17 00:00:00 2001 From: Kevin Alwell Date: Thu, 29 Oct 2020 16:23:31 -0400 Subject: [PATCH 1/3] Create node.js.yml --- .github/workflows/node.js.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 00000000..f28e2baf --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,28 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI - Demo** + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm test From 1cbcc1eaeda0614783948d1c398ccaabde71befa Mon Sep 17 00:00:00 2001 From: Kevin Alwell Date: Thu, 29 Oct 2020 16:24:48 -0400 Subject: [PATCH 2/3] Update node.js.yml --- .github/workflows/node.js.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index f28e2baf..4fa355df 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -24,5 +24,4 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: npm ci - run: npm test From cb9a7b3480eb85455a211ae82ca28647a0d1c486 Mon Sep 17 00:00:00 2001 From: Kevin Alwell Date: Thu, 29 Oct 2020 16:27:24 -0400 Subject: [PATCH 3/3] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c422390b..ac354a13 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@/code-to-cloud-twitch-public", + "name": "@alwell-kevin/code-to-cloud-twitch-public", "version": "1.0.0", "description": "Calculator", "repository": {