From cb8f3b19843e32e2b0549cf7308c68f567993692 Mon Sep 17 00:00:00 2001 From: Adam Fortuna Date: Mon, 24 Oct 2016 11:07:31 -0400 Subject: [PATCH 1/7] Added example answer --- index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.html b/index.html index 4f7f0189f..c14282fe2 100755 --- a/index.html +++ b/index.html @@ -4,8 +4,15 @@ + AdamFortuna +

Hello, Code School!

+ From 55f99331dff2ac0d0cd5f30a7ddbc63bf7883e3d Mon Sep 17 00:00:00 2001 From: Eric J Fisher Date: Fri, 9 Dec 2016 15:44:55 -0500 Subject: [PATCH 2/7] Corrected project Url in Readme.md and branch name The project urls were missing the `-` in `code-school` causing them to 404, these urls have been corrected. In addition to this the `solution` branch was incorrectly called the `answer` branch in the Readme.md file. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 66e3bebe0..7cdf47539 100755 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is a sample project to test out how projects work at Code School. For this # Getting Started -To get started with this project, head over to the [Hello Code School](https://www.codeschool.com/projects/hello-codeschool) project on Code School, and begin! It'll walk you through all of the steps below. They're included here in the readme in case you work better locally, or want to try working on this project offline. +To get started with this project, head over to the [Hello Code School](https://www.codeschool.com/projects/hello-code-school) project on Code School, and begin! It'll walk you through all of the steps below. They're included here in the readme in case you work better locally, or want to try working on this project offline. # Prerequisites @@ -43,7 +43,7 @@ In these `li` elements, list out what you want to learn. # Checking Your Work -Once you've completed all of the tasks, go ahead and commit those to your fork of this repository and push it up to GitHub. Follow the directions on [Hello Code School](https://www.codeschool.com/projects/hello-codeschool) to submit your project and get feedback from Code School. +Once you've completed all of the tasks, go ahead and commit those to your fork of this repository and push it up to GitHub. Follow the directions on [Hello Code School](https://www.codeschool.com/projects/hello-code-school) to submit your project and get feedback from Code School. ## Running Tests Locally @@ -88,4 +88,4 @@ This will make your `index.html` file available at the URL: `http://.github.io/HelloCodeSchoolProject/` -For instance, our `answer` branch is available at the url [http://codeschool.github.io/HelloCodeSchoolProject/](http://codeschool.github.io/HelloCodeSchoolProject/). +For instance, our `solution` branch is available at the url [http://codeschool.github.io/HelloCodeSchoolProject/](http://codeschool.github.io/HelloCodeSchoolProject/). From bd34099cd06fd1de7ca6ece607781d5d8ba1257e Mon Sep 17 00:00:00 2001 From: Eric J Fisher Date: Fri, 9 Dec 2016 16:04:29 -0500 Subject: [PATCH 3/7] Corrected Demo location and bad link Removed the link for `how to setup git` as it wasn't going anywhere and was already removed from the master branch's Readme.md. Also corrected the demo link to reflect the new demo location. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cdf47539..7f956ef17 100755 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you know these, you should be all set to jump in and give this project a shot # Setup -In order to get this working, you'll need to have [Git](https://git-scm.com/) installed, and have a GitHub account. If this is your first time setting up Git, I'd recommend checking out Code School's video on [How to Setup Git for Code School Projects in 5 Minutes](#) to learn what you need to know. +In order to get this working, you'll need to have [Git](https://git-scm.com/) installed, and have a GitHub account. If this is your first time setting up Git, I'd recommend checking out Code School's video on How to Setup Git for Code School Projects in 5 Minutes to learn what you need to know. To get started, fork this repository to your account and clone it down locally. If you want, you can also try doing this completely from GitHub! @@ -88,4 +88,4 @@ This will make your `index.html` file available at the URL: `http://.github.io/HelloCodeSchoolProject/` -For instance, our `solution` branch is available at the url [http://codeschool.github.io/HelloCodeSchoolProject/](http://codeschool.github.io/HelloCodeSchoolProject/). +For instance, our `solution` branch is available at the url [https://codeschool-project-demos.github.io/HelloCodeSchoolProject/](https://codeschool-project-demos.github.io/HelloCodeSchoolProject/). From 3872d6881cf9de4d6f72cf78430870b052638304 Mon Sep 17 00:00:00 2001 From: Grimm Date: Sat, 1 Feb 2020 02:43:40 +0400 Subject: [PATCH 4/7] nodejs.yml --- .github/workflows/nodejs.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 000000000..ed236a473 --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,29 @@ +name: Node.js CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [8.x, 10.x, 12.x] + + steps: + name: Setup Go for use with actions + uses: actions/setup-go@v1.0.0 + with: + # The Go version to download (if necessary) and use. Example: 1.9.3 + version: # optional, default is 1.10 + uses: actions/checkout@v2 + name: Use Node.js ${{ matrix.node-version }} +uses: actions/setup-node@v1 +with: + node-version: ${{ matrix.node-version }} + run: npm install +run: npm run build --if-present + run: npm test + env: + CI: true From 31f20a92a2f4497530068276bb8af33255b4e7aa Mon Sep 17 00:00:00 2001 From: Grimm Date: Tue, 4 Feb 2020 02:13:38 +0400 Subject: [PATCH 5/7] updarte nodejs.yml --- .github/workflows/nodejs.yml | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ed236a473..a57d09c82 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -12,18 +12,20 @@ jobs: node-version: [8.x, 10.x, 12.x] steps: - name: Setup Go for use with actions - uses: actions/setup-go@v1.0.0 - with: - # The Go version to download (if necessary) and use. Example: 1.9.3 - version: # optional, default is 1.10 - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} -uses: actions/setup-node@v1 -with: - node-version: ${{ matrix.node-version }} - run: npm install -run: npm run build --if-present - run: npm test - env: - CI: true + - name: Setup Go for use with actions + - uses: actions/setup-go@v1.0.0 + with: # The Go version to download (if necessary) and use. Example: 1.9.3 + go-version: '1.9.3' + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node_version }} + - name: npm install, build and test + run: | + npm install + npm run build --if-present + npm test + + env: + CI: true From 5af0c261539c0f810d26ff52d20d6eca363b22a4 Mon Sep 17 00:00:00 2001 From: Grimm Date: Tue, 4 Feb 2020 02:29:06 +0400 Subject: [PATCH 6/7] Update nodejs.yml --- .github/workflows/nodejs.yml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index a57d09c82..6524a5c85 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,16 +16,19 @@ jobs: - uses: actions/setup-go@v1.0.0 with: # The Go version to download (if necessary) and use. Example: 1.9.3 go-version: '1.9.3' - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + steps: + uses: actions/setup-node@v1 + with: node-version: ${{ matrix.node_version }} - - name: npm install, build and test - run: | - npm install - npm run build --if-present - npm test - - env: - CI: true + + run: | + npm install + npm run build --if-present + npm test + + env: + + CI: true From f26bd1b2fd0c82538700e1aeb6f2a53737922e15 Mon Sep 17 00:00:00 2001 From: Grimm Date: Tue, 4 Feb 2020 03:22:59 +0400 Subject: [PATCH 7/7] Update nodejs.yml --- .github/workflows/nodejs.yml | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6524a5c85..7d8b7a296 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,19 +16,14 @@ jobs: - uses: actions/setup-go@v1.0.0 with: # The Go version to download (if necessary) and use. Example: 1.9.3 go-version: '1.9.3' - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - steps: - uses: actions/setup-node@v1 - with: + + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: node-version: ${{ matrix.node_version }} - - run: | - npm install - npm run build --if-present - npm test - - env: - - CI: true + - run: install + - run: npm build --if-present + - run: npm test +env: + CI: true