Skip to content

Commit 989fa31

Browse files
docs: add WIP banner and CI badge to README\n
chore: add MIT LICENSE file\nci: add GitHub Actions workflow to build TS with Node 20
1 parent e18a7cf commit 989fa31

File tree

3 files changed

+54
-1
lines changed

3 files changed

+54
-1
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+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
cache: npm
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Build
26+
run: npm run build
27+

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Untoshi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CLUNKERS 🔵⚡
22

3+
[![CI](https://github.com/untoshi/clunkers/actions/workflows/ci.yml/badge.svg)](https://github.com/untoshi/clunkers/actions/workflows/ci.yml)
4+
5+
> Status: Work in Progress — not yet fully functional. Contributions and feedback welcome.
6+
37
**FlashNet Token Sniper - Dark. Technical. Lightning Fast.**
48

59
A professional-grade automated token sniping system for the FlashNet AMM, designed to execute trades the moment FlashNet mainnet comes back online.
@@ -307,4 +311,4 @@ This software is for educational and research purposes. Cryptocurrency trading i
307311

308312
**CLUNKERS** - *Dark. Technical. Lightning Fast.*
309313

310-
Built for the FlashNet ecosystem with precision engineering and professional-grade reliability.
314+
Built for the FlashNet ecosystem with precision engineering and professional-grade reliability.

0 commit comments

Comments
 (0)