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 | f5d10683a1edeba4dabe148ff7aa682c044f7496 (patch) | |
tree | d8f7edae96baa26823dee80ccc9329a23ac04c3c /.github/workflows/front-ci.yaml | |
parent | 7753c9cad23b06c2acdd908a5a7cc3863bfa6b61 (diff) | |
download | timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.tar.gz timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.tar.bz2 timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.zip |
Merge front end repo
Diffstat (limited to '.github/workflows/front-ci.yaml')
-rw-r--r-- | .github/workflows/front-ci.yaml | 43 |
1 files changed, 43 insertions, 0 deletions
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/
|