Skip to content

Commit 573bc1c

Browse files
author
Kirill Kharitonov
committed
chore: added packages check flow to ci and disable it
1 parent fe3697a commit 573bc1c

File tree

1 file changed

+31
-29
lines changed

1 file changed

+31
-29
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,39 @@ jobs:
1111
name: Verify Files
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Checkout
15-
uses: actions/checkout@v4
16-
with:
17-
fetch-depth: 0
18-
- name: Setup Node
19-
uses: actions/setup-node@v4
20-
with:
21-
node-version: 20
22-
cache: npm
23-
- name: Install Packages
24-
run: npm ci
25-
- name: Lint Files
26-
run: npm run lint
27-
- name: Typecheck
28-
run: npm run typecheck
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
- name: Setup Node
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: npm
23+
- name: Install Packages
24+
run: npm ci
25+
- name: Lint Files
26+
run: npm run lint
27+
- name: Typecheck
28+
run: npm run typecheck
29+
# Temporarily disabled due to errors in dependencies
30+
# - name: Check Packages
31+
# run: npm run packages:check
2932

3033
tests:
3134
name: Tests
3235
runs-on: ubuntu-latest
3336
steps:
34-
- name: Checkout
35-
uses: actions/checkout@v4
36-
with:
37-
fetch-depth: 0
38-
- name: Setup Node
39-
uses: actions/setup-node@v4
40-
with:
41-
node-version: 20
42-
cache: npm
43-
- name: Install Packages
44-
run: npm ci
45-
- name: Unit Tests
46-
run: npm run test
47-
37+
- name: Checkout
38+
uses: actions/checkout@v4
39+
with:
40+
fetch-depth: 0
41+
- name: Setup Node
42+
uses: actions/setup-node@v4
43+
with:
44+
node-version: 20
45+
cache: npm
46+
- name: Install Packages
47+
run: npm ci
48+
- name: Unit Tests
49+
run: npm run test

0 commit comments

Comments
 (0)