diff options
author | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
commit | b78d21a524f7a11ad29b4bd230f23825f80c3ed7 (patch) | |
tree | 88bfe8d4c5298f61a90c501933784885ec9ce77f /.github | |
parent | 886ab2a222bc503156542988edc7be5062f6e7b1 (diff) | |
download | timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.tar.gz timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.tar.bz2 timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.zip |
Merge front end repo
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/back-ci.yaml (renamed from .github/workflows/ci.yaml) | 6 | ||||
-rw-r--r-- | .github/workflows/cd-version.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/cd.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/front-ci.yaml | 43 |
4 files changed, 48 insertions, 5 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/back-ci.yaml index b59f94fb..c4e45872 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/back-ci.yaml @@ -1,10 +1,14 @@ -name: CI
+name: Back End CI
on:
push:
branches: [master]
+ paths-ignore:
+ - "Timeline/ClientApp/**"
pull_request:
branches: [master]
+ paths-ignore:
+ - "Timeline/ClientApp/**"
jobs:
build:
diff --git a/.github/workflows/cd-version.yaml b/.github/workflows/cd-version.yaml index 72531eef..a15acd2a 100644 --- a/.github/workflows/cd-version.yaml +++ b/.github/workflows/cd-version.yaml @@ -12,8 +12,6 @@ jobs: steps:
- uses: actions/checkout@v2
- with:
- submodules: true
- name: Build And Push to Docker Hub
uses: docker/build-push-action@v1
diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 4ae002c4..4ddfd6d1 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -11,8 +11,6 @@ jobs: steps:
- uses: actions/checkout@v2
- with:
- submodules: true
- name: Build And Push to Docker Hub
uses: docker/build-push-action@v1
diff --git a/.github/workflows/front-ci.yaml b/.github/workflows/front-ci.yaml new file mode 100644 index 00000000..b549479a --- /dev/null +++ b/.github/workflows/front-ci.yaml @@ -0,0 +1,43 @@ +name: Front End CI
+
+on:
+ push:
+ branches: [master]
+ paths:
+ - "Timeline/ClientApp/**"
+ pull_request:
+ branches: [master]
+ paths:
+ - "Timeline/ClientApp/**"
+
+jobs:
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ shell: bash
+ working-directory: Timeline/ClientApp
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - 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: dist
+ path: Timeline/ClientApp/dist/
|