Skip to content

Commit c9717a8

Browse files
committed
fix(comment): fix comments
1 parent 6f2a1c6 commit c9717a8

File tree

1 file changed

+5
-28
lines changed

1 file changed

+5
-28
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: CI
33
on:
44
push:
55
branches:
6-
- "main"
6+
- 'main'
77
tags:
8-
- "v*"
8+
- 'v*'
99
pull_request:
1010
branches:
1111
- 'main'
@@ -77,29 +77,6 @@ jobs:
7777
cache-from: type=gha
7878
cache-to: type=gha,mode=max
7979

80-
lint:
81-
runs-on: ubuntu-latest
82-
steps:
83-
- name: Checkout
84-
uses: actions/checkout@v4
85-
86-
- name: Setup pnpm
87-
uses: pnpm/action-setup@v4
88-
with:
89-
version: 10.17.1
90-
91-
- name: Setup Node.js
92-
uses: actions/setup-node@v4
93-
with:
94-
node-version: '20'
95-
cache: 'pnpm'
96-
97-
- name: Install dependencies
98-
run: pnpm install --frozen-lockfile
99-
100-
- name: Run lint
101-
run: pnpm lint
102-
10380
test:
10481
runs-on: ubuntu-latest
10582
steps:
@@ -135,7 +112,7 @@ jobs:
135112
- name: Run tests
136113
run: pnpm test:e2e --coverage
137114
env:
138-
OBB_LOG_LEVELS: ""
115+
OBB_LOG_LEVELS: ''
139116

140117
- name: Print coverage report
141118
run: |
@@ -150,7 +127,7 @@ jobs:
150127

151128
app:
152129
runs-on: ubuntu-latest
153-
needs: [ runtime, test, lint ]
130+
needs: [runtime, test]
154131
steps:
155132
- name: Checkout
156133
uses: actions/checkout@v4
@@ -197,7 +174,7 @@ jobs:
197174

198175
webhook:
199176
runs-on: ubuntu-latest
200-
needs: [ app ]
177+
needs: [app]
201178
steps:
202179
- name: TEST push webhook
203180
if: github.event_name == 'push'

0 commit comments

Comments
 (0)