Skip to content

Commit 05b4952

Browse files
feat: add worflow file
1 parent 1bd1019 commit 05b4952

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/prod.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Build and Deploy to Production"
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
jobs:
7+
build-porfolio:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: "Installing Node.js"
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: "22"
16+
17+
- name: "Installing Dependencies"
18+
run: npm install
19+
20+
- name: "Building Project"
21+
run: npm run build

0 commit comments

Comments
 (0)