-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (44 loc) · 965 Bytes
/
deploy-fe.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
name: Build and Deploy
on:
# test purposes
pull_request:
branches:
- 'master'
types:
- opened
- synchronize
- reopened
push:
branches:
- 'master'
workflow_dispatch:
permissions:
contents: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install node_modules
run: pnpm install
working-directory: solfees-fe
- name: Build application
run: pnpm build
working-directory: solfees-fe
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: solfees-fe/build
#test