1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

Merge pull request #261 from bmiddha/github_actions

Added GitHub Actions CI Workflow
This commit is contained in:
Orta
2020-01-29 13:46:33 -05:00
committed by GitHub
2 changed files with 31 additions and 0 deletions

30
.github/workflows/nodejs.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
name: Node CI
on: [push, pull_request]
jobs:
build-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
env:
CI: true

View File

@@ -199,6 +199,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 |