Skip to content

Commit 73abfd3

Browse files
committed
fix
1 parent 6c4034a commit 73abfd3

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
name: Deploy My Web App
1+
# name: Deploy My Web App
22

3-
# When to run this
4-
on:
5-
push:
6-
branches: [main]
7-
workflow_dispatch: # Allows manual triggering
3+
# # When to run this
4+
# on:
5+
# push:
6+
# branches: [main]
7+
# workflow_dispatch: # Allows manual triggering
88

9-
jobs:
10-
deploy:
11-
runs-on: ubuntu-latest
9+
# jobs:
10+
# deploy:
11+
# runs-on: ubuntu-latest
1212

13-
steps:
14-
# Get your code
15-
- uses: actions/checkout@v4
13+
# steps:
14+
# # Get your code
15+
# - uses: actions/checkout@v4
1616

17-
# Setup Node.js
18-
- uses: actions/setup-node@v4
19-
with:
20-
node-version: '18'
17+
# # Setup Node.js
18+
# - uses: actions/setup-node@v4
19+
# with:
20+
# node-version: '18'
2121

22-
# Install and test
23-
- run: npm install
24-
- run: npm test
22+
# # Install and test
23+
# - run: npm install
24+
# - run: npm test
2525

26-
# Build Docker image
27-
- run: docker build -t my-webapp .
26+
# # Build Docker image
27+
# - run: docker build -t my-webapp .
2828

29-
# (You'll add deployment steps here later)
30-
- run: echo "App tested and built successfully!"
29+
# # (You'll add deployment steps here later)
30+
# - run: echo "App tested and built successfully!"

0 commit comments

Comments
 (0)