Skip to content

Commit

Permalink
working directory for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfgebhardt committed Feb 8, 2024
1 parent 7ee8c02 commit e6002ab
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/frontend.deploy.chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ jobs:
fetch-depth: 0

- name: Frontend | Build
run: npm install && npm run chromatic -- --exit-zero-on-changes
run: npm install && npm run chromatic -- --exit-zero-on-changes
working-directory: ${{env.WORKING_DIRECTORY}}
3 changes: 2 additions & 1 deletion .github/workflows/frontend.test.build.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
uses: actions/checkout@v4

- name: Frontend | Build
run: npm install && npm run build
run: npm install && npm run build
working-directory: ${{env.WORKING_DIRECTORY}}
3 changes: 2 additions & 1 deletion .github/workflows/frontend.test.build.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
uses: actions/checkout@v4

- name: Frontend | Build Docs
run: npm install && npm run docs:build
run: npm install && npm run docs:build
working-directory: ${{env.WORKING_DIRECTORY}}
3 changes: 2 additions & 1 deletion .github/workflows/frontend.test.build.storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
uses: actions/checkout@v4

- name: Frontend | Build Storybook
run: npm install && npm run storybook:build
run: npm install && npm run storybook:build
working-directory: ${{env.WORKING_DIRECTORY}}
3 changes: 2 additions & 1 deletion .github/workflows/frontend.test.lint.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
uses: actions/checkout@v4

- name: Frontend | Lint
run: npm install && npm run test:lint
run: npm install && npm run test:lint
working-directory: ${{env.WORKING_DIRECTORY}}
3 changes: 2 additions & 1 deletion .github/workflows/frontend.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
uses: actions/checkout@v4

- name: Frontend | Unit
run: npm install && npm run test:unit
run: npm install && npm run test:unit
working-directory: ${{env.WORKING_DIRECTORY}}

0 comments on commit e6002ab

Please sign in to comment.