8000 chore: remove lint step from CI · podium-lib/node-http-proxy-fork@a3e5abb · GitHub
[go: up one dir, main page]

Skip to content

Commit a3e5abb

Browse files
committed
chore: remove lint step from CI
1 parent f50bb2b commit a3e5abb

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

.github/publish.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,17 @@ jobs:
2222
name: Release
2323
runs-on: [ubuntu-latest]
2424
steps:
25-
- name: Checkout
26-
uses: actions/checkout@v4
25+
- uses: actions/checkout@v4
2726

28-
- name: Install Node.js
29-
uses: actions/setup-node@v4
27+
- uses: actions/setup-node@v4
3028
with:
3129
node-version: 22
3230

33-
- name: Install dependencies
34-
run: npm install
31+
- run: npm install
3532

36-
- name: Lint
37-
run: npm run lint
33+
- run: npm test
3834

39-
- name: Run all tests
40-
run: npm test
41-
42-
- name: Release and publish
43-
run: npx semantic-release
35+
- run: npx semantic-release
4436
env:
4537
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4638
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/pull-request.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,4 @@ jobs:
2626

2727
- run: npm install
2828

29-
- run: npm run lint
30-
3129
- run: npm test

0 commit comments

Comments
 (0)
0