Skip to content

Commit b052e56

Browse files
authored
Update CI workflow by removing lint step
Removed lint step and adjusted Node.js version.
1 parent add4192 commit b052e56

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,17 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '20.x'
19+
node-version: '20'
2020
cache: 'npm'
2121

2222
- name: Install dependencies
2323
run: npm ci
24-
25-
- name: Lint
26-
run: npm run lint
27-
24+
2825
- name: Type check
2926
run: npm run type-check
30-
27+
3128
# - name: Run tests
3229
# run: npm run test
33-
34-
- name: Build
3530

36-
run: npm run build
31+
- name: Build
32+
run: npm run build

0 commit comments

Comments
 (0)