Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/dorny/paths-filt…
Browse files Browse the repository at this point in the history
…er-3.0.2
  • Loading branch information
mahula authored Mar 11, 2024
2 parents fc44447 + 7d30ed2 commit 2c52d3b
Show file tree
Hide file tree
Showing 15 changed files with 122 additions and 64 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/backend.test.build.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./backend
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/backend.test.build.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.backend-test-build-docker }}
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Check for backend file changes
uses: dorny/paths-filter@v3.0.2
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/backend.test.build.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./backend
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/backend.test.lint.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./backend
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/backend.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
env:
WORKING_DIRECTORY: ./backend
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout
uses: actions/checkout@master

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.deploy.chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/presenter.test.build.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.presenter-test-build-code }}
steps:
- uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

- name: Check for presenter file changes
uses: dorny/paths-filter@v3.0.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/presenter.test.build.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.presenter-test-build-docker }}
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Check for presenter file changes
uses: dorny/paths-filter@v3.0.2
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.test.build.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.test.build.storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.test.lint.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/presenter.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'

- name: Checkout code
uses: actions/checkout@v4

Expand Down
112 changes: 56 additions & 56 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2c52d3b

Please sign in to comment.