Skip to content

Commit 92f5662

Browse files
authored
Add CI workflow configuration file
1 parent 7ebf2cf commit 92f5662

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# .github/workflows/ci.yml
2+
name: CI
3+
4+
on:
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
# Add your build, test, or deployment steps here
19+
# Example for Node.js projects:
20+
# - name: Set up Node.js
21+
# uses: actions/setup-node@v4
22+
# with:
23+
# node-version: '20'
24+
# - name: Install dependencies
25+
# run: npm install
26+
# - name: Run tests
27+
# run: npm test

0 commit comments

Comments
 (0)