Skip to content

Commit bba39e7

Browse files
authored
Update lint.yml
1 parent b027395 commit bba39e7

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/lint.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,27 @@ jobs:
1717
- name: 📂 Check out Git repository
1818
uses: actions/checkout@v4
1919

20-
- name: 🛠️ Set up Node.js
21-
uses: actions/setup-node@v4
22-
with:
23-
node-version: ${{ matrix.node }}
20+
#- name: 🛠️ Set up Node.js
21+
# uses: actions/setup-node@v4
22+
# with:
23+
# node-version: ${{ matrix.node }}
2424

2525
- name: 🛠️ Set up Bun.sh
2626
uses: oven-sh/setup-bun@v2
2727
with:
2828
bun-version: latest
2929

3030
# ESLint and Prettier must be in `package.json`
31-
- name: 📦 Install Node.js dependencies with Node.js
32-
run: npm ci
31+
#- name: 📦 Install Node.js dependencies with Node.js
32+
# run: npm ci
3333

3434
- name: 📦 Install Node.js dependencies with Bun
35-
run: bun install --frozen-lockfile
35+
run: bun install && bun run lint:fix
3636

37-
- name: 🧹 🎨 Run linters and formatting
38-
uses: wearerequired/lint-action@v2
39-
with:
40-
github_token: ${{ secrets.token }}
41-
# Enable linters
42-
eslint: true
43-
prettier: true
37+
#- name: 🧹 🎨 Run linters and formatting
38+
# uses: wearerequired/lint-action@v2
39+
# with:
40+
# github_token: ${{ secrets.token }}
41+
# # Enable linters
42+
# eslint: true
43+
# prettier: true

0 commit comments

Comments
 (0)