aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/front-ci.yaml
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-10-27 19:21:35 +0800
committercrupest <crupest@outlook.com>2020-10-27 19:21:35 +0800
commit05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33 (patch)
tree929e514de85eb82a5acb96ecffc6e6d2d95f878f /.github/workflows/front-ci.yaml
parent986c6f2e3b858d6332eba0b42acc6861cd4d0227 (diff)
downloadtimeline-05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33.tar.gz
timeline-05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33.tar.bz2
timeline-05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33.zip
Split front and back end.
Diffstat (limited to '.github/workflows/front-ci.yaml')
-rw-r--r--.github/workflows/front-ci.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/front-ci.yaml b/.github/workflows/front-ci.yaml
index b549479a..93581dad 100644
--- a/.github/workflows/front-ci.yaml
+++ b/.github/workflows/front-ci.yaml
@@ -4,11 +4,11 @@ on:
push:
branches: [master]
paths:
- - "Timeline/ClientApp/**"
+ - "FrontEnd/**"
pull_request:
branches: [master]
paths:
- - "Timeline/ClientApp/**"
+ - "FrontEnd/**"
jobs:
build:
@@ -17,15 +17,15 @@ jobs:
defaults:
run:
shell: bash
- working-directory: Timeline/ClientApp
+ working-directory: FrontEnd
steps:
- uses: actions/checkout@v2
- - name: Use Node.js 14
+ - name: Use Node.js 15
uses: actions/setup-node@v1
with:
- node-version: "14"
+ node-version: "15"
- name: Restore Packages
run: yarn
@@ -40,4 +40,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: dist
- path: Timeline/ClientApp/dist/
+ path: FrontEnd/dist/