-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (43 loc) · 1.15 KB
/
ci_cd.yml
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
name: Node CI/CD
on:
push:
branches: [ main ]
defaults:
run:
working-directory: ./frontend
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: ./frontend/pnpm-lock.yaml
- name: Install and Build
run: |
pnpm install
pnpm build:prod
# - name: Deploy
# uses: SamKirkland/[email protected]
# with:
# ftp-server: ${{ secrets.FTP_SERVER }}
# ftp-username: ${{ secrets.FTP_USERNAME }}
# ftp-password: ${{ secrets.FTP_PASSWORD }}
# git-ftp-args: --insecure
# uses: pressidium/lftp-mirror-action@v1
# with:
# host: ${{ secrets.FTP_SERVER }}
# user: ${{ secrets.FTP_USERNAME }}
# pass: ${{ secrets.FTP_PASSWORD }}
# localDir: 'frontend/dist/browser'