tangled
alpha
login
or
join now
skywatch.blue
/
skywatch-automod
7
fork
atom
A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules
7
fork
atom
overview
issues
pulls
pipelines
Refactor CI to use Bun instead of Node.js and npm
Skywatch
5 months ago
c73dc60a
535716c1
+3
-6
1 changed file
expand all
collapse all
unified
split
.github
workflows
ci.yml
+3
-6
.github/workflows/ci.yml
reviewed
···
15
15
- name: Checkout code
16
16
uses: actions/checkout@v4
17
17
18
18
-
- name: Setup Node.js
19
19
-
uses: actions/setup-node@v4
20
20
-
with:
21
21
-
node-version: "20"
22
22
-
cache: "npm"
18
18
+
- name: Setup Bun
19
19
+
uses: oven-sh/setup-bun@v1
23
20
24
21
- name: Install dependencies
25
25
-
run: npm ci
22
22
+
run: bun install
26
23
27
24
- name: Run linter
28
25
run: npm run lint