We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebf2cf commit 92f5662Copy full SHA for 92f5662
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+# .github/workflows/ci.yml
2
+name: CI
3
+
4
+on:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
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