aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/front-ci.yaml
blob: d7c09dd510735afe9fccc40af03914a6079447aa (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
44
45
46
47
48
49
name: Front End CI

on:
  push:
    branches: [main]
    paths:
      - "FrontEnd/**"
  pull_request:
    branches: [main]
    paths:
      - "FrontEnd/**"

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    defaults:
      run:
        shell: bash
        working-directory: FrontEnd

    steps:
      - uses: actions/checkout@v3

      - uses: pnpm/action-setup@v2
        with:
          version: 8

      - name: Use Node.js Latest
        uses: actions/setup-node@v3
        with:
          node-version: "latest"
          cache: "pnpm"
          cache-dependency-path: '**/pnpm-lock.yaml'

      - name: Restore Packages
        run: pnpm install --frozen-lockfile

      - name: Build App
        run: pnpm run build

      - name: Lint Code
        run: pnpm run lint

      - name: Upload Artifact
        uses: actions/upload-artifact@v3
        with:
          name: dist
          path: FrontEnd/dist/