From 4824e08b547d97506a1f5544775c6be6fb8c9214 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Fri, 3 Jan 2020 16:00:06 -0600 Subject: [PATCH] updated project structure docs --- .github/workflows/{ci.yml => nodejs.yml} | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{ci.yml => nodejs.yml} (98%) diff --git a/.github/workflows/ci.yml b/.github/workflows/nodejs.yml similarity index 98% rename from .github/workflows/ci.yml rename to .github/workflows/nodejs.yml index 8a2a07e..2b5a01b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/nodejs.yml @@ -1,4 +1,4 @@ -name: CI +name: Node CI on: [push, pull_request] diff --git a/README.md b/README.md index 146e01d..6ede4e1 100644 --- a/README.md +++ b/README.md @@ -194,6 +194,7 @@ The full folder structure of this app is explained below: | Name | Description | | ------------------------ | --------------------------------------------------------------------------------------------- | | **.vscode** | Contains VS Code specific settings | +| **.github** | Contains GitHub settings and configurations, incuding the GitHub Actions workflows | | **dist** | Contains the distributable (or output) from your TypeScript build. This is the code you ship | | **node_modules** | Contains all your npm dependencies | | **src** | Contains your source code that will be compiled to the dist dir |