Skip to content

Commit 3bdaeb5

Browse files
ci: simplify dapp CI workflow by removing redundant build job and path filters
1 parent 6f95cce commit 3bdaeb5

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

.github/workflows/dapp-ci.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ on:
66
- '*'
77
paths:
88
- 'dapp/**'
9-
- 'dapp/package.json'
10-
- 'dapp/package-lock.json'
11-
- 'dapp/.eslintrc.json'
12-
- 'dapp/.prettierrc'
139

1410
concurrency:
1511
group: ${{ github.ref }}-dapp-ci
@@ -61,29 +57,3 @@ jobs:
6157

6258
- name: Test with coverage
6359
run: npm run ctest
64-
65-
build:
66-
runs-on: ubuntu-latest
67-
defaults:
68-
run:
69-
working-directory: ./dapp
70-
steps:
71-
- uses: actions/checkout@v4
72-
73-
- uses: actions/setup-node@v4
74-
with:
75-
node-version: 14
76-
cache: 'npm'
77-
cache-dependency-path: dapp/package-lock.json
78-
79-
- name: Install Dependencies
80-
run: npm ci
81-
82-
- name: Format check
83-
run: npm run check-format
84-
85-
- name: Lint check
86-
run: npm run lint
87-
88-
- name: Test build
89-
run: npm run test

0 commit comments

Comments
 (0)