Skip to content

Commit 708a3b3

Browse files
Initial release (#1)
1 parent bca312f commit 708a3b3

File tree

16 files changed

+1385
-79
lines changed

16 files changed

+1385
-79
lines changed

.changeset/cold-actors-argue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"rpc-anywhere": major
3+
---
4+
5+
Initial release.

.eslintrc.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@ module.exports = {
3030
"error",
3131
{ fixStyle: "inline-type-imports" },
3232
],
33+
// YOLO
34+
"@typescript-eslint/no-explicit-any": "off",
3335
},
3436
};

.github/workflows/test-check.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test
2+
on:
3+
pull_request:
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: oven-sh/setup-bun@v1
10+
with:
11+
bun-version: latest
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 16.x
15+
- run: bun install --frozen-lockfile --ignore-scripts
16+
- name: Test
17+
run: bun test

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# my project
1+
# RPC Anywhere

0 commit comments

Comments
 (0)