blob: b549479a00e595a99fdcc2cd9f4f55eeb5a7cbc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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/
|