Skip to content

Commit e6b6f67

Browse files
committed
update directory for workflow actions
1 parent 30217fb commit e6b6f67

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

.github/workflows/ui-development.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ jobs:
1515
uses: actions/checkout@v3
1616

1717
- name: Install dependencies
18-
run: |
19-
cd ui
20-
npm ci
18+
run: npm ci
19+
working-directory: src/ui
2120

2221
- name: Run quality and typing checks
23-
run: |
24-
cd ui
25-
make quality
22+
run: make quality
23+
working-directory: src/ui
2624

2725
precommit-check:
2826
permissions:
@@ -33,11 +31,9 @@ jobs:
3331
uses: actions/checkout@v3
3432

3533
- name: Install dependencies
36-
run: |
37-
cd ui
38-
npm ci
34+
working-directory: src/ui
35+
run: npm ci
3936

4037
- name: Run pre-commit checks
41-
run: |
42-
cd ui
43-
npx husky run pre-commit
38+
run: npx husky run pre-commit
39+
working-directory: src/ui

0 commit comments

Comments
 (0)