diff options
author | crupest <crupest@outlook.com> | 2020-07-13 20:59:52 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-13 20:59:52 +0800 |
commit | 6f0b2b85df74199575eabee3abfd7734bd36df76 (patch) | |
tree | 8030e6a2539347ccb12f0a6bbd31a1f390c6a7b7 /.github/workflows/ci.yaml | |
parent | 5d71f96cb7673815d80d0a4eb09a3cc96c564a18 (diff) | |
download | timeline-6f0b2b85df74199575eabee3abfd7734bd36df76.tar.gz timeline-6f0b2b85df74199575eabee3abfd7734bd36df76.tar.bz2 timeline-6f0b2b85df74199575eabee3abfd7734bd36df76.zip |
Move front end to a submodule.
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r-- | .github/workflows/ci.yaml | 51 |
1 files changed, 4 insertions, 47 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5cfe9a8a..4108ad1f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -name: Routine Build And Test
+name: CI
on:
push:
@@ -11,51 +11,8 @@ on: - "**/README.md"
jobs:
- front-end:
- name: Front End Build
- runs-on: ubuntu-latest
- defaults:
- run:
- working-directory: Timeline/ClientApp
- shell: bash
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Restore Cache
- uses: actions/cache@v2
- with:
- path: |
- Timeline/ClientApp/.pnp.*
- Timeline/ClientApp/.yarn
- !Timeline/ClientApp/.yarn/releases
- !Timeline/ClientApp/.yarn/plugins
- key: yarn-${{ runner.os }}-${{ hashFiles('Timeline/ClientApp/yarn.lock') }}
- restore-keys: |
- yarn-${{ runner.os }}-
-
- - name: Use Node.js 14
- uses: actions/setup-node@v1
- with:
- node-version: "14"
-
- - name: Restore Packages
- run: yarn
-
- - name: Build App
- run: yarn build
-
- - name: Lint Code
- run: yarn lint
-
- - name: Upload Artifact
- uses: actions/upload-artifact@v2
- with:
- name: front-end
- path: Timeline/ClientApp/dist/
-
- back-end:
- name: Back End Build And Test
+ build:
+ name: Build And Test
runs-on: ubuntu-latest
env:
ASPNETCORE_ENVIRONMENT: "Development"
@@ -84,5 +41,5 @@ jobs: uses: actions/upload-artifact@v2
if: ${{ success() || failure() }}
with:
- name: back-end-test
+ name: test-result
path: Timeline.Tests/TestResults/
|