Skip to content

Commit 9e73db0

Browse files
🐛 fix: Fix eslint
1 parent a331f58 commit 9e73db0

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.github/workflows/pkg.pr.new.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Pkg Pr New CI
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- '!main'
7+
8+
jobs:
9+
release:
10+
name: Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Install bun
16+
uses: oven-sh/setup-bun@v2
17+
18+
- name: Install deps
19+
run: bun i
20+
21+
- name: CI
22+
run: bun run ci
23+
24+
- name: Test
25+
run: bun run test
26+
27+
- name: Build
28+
run: bun run build
29+
30+
- name: Release
31+
run: bunx pkg-pr-new publish

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"eslint-plugin-simple-import-sort": "^12.1.1",
7474
"eslint-plugin-sort-keys-fix": "^1.1.2",
7575
"eslint-plugin-typescript-sort-keys": "^3.3.0",
76-
"eslint-plugin-unicorn": "^56.0.1",
76+
"eslint-plugin-unicorn": "^54.0.0",
7777
"eslint-plugin-unused-imports": "^3.2.0",
7878
"gatsby-remark-find-replace": "^0.3.0",
7979
"postcss-less": "^6.0.0",

0 commit comments

Comments
 (0)