Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency babel-jest to v29 #55

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 18 additions & 10 deletions .github/labeller.yaml → .github/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,45 @@

# Any change to any file in .github/workflows
'GitHub Actions':
- '.github/workflows/*'
- changed-files:
- any-glob-to-any-file: ['.github/workflows/*']

# Any change to the docker-compose file or any dockerfile in the repo
'Docker':
- '**/Dockerfile'
- docker-compose.yml
- changed-files:
- any-glob-to-any-file: ['**/Dockerfile', 'docker-compose.yml']

# Any changes to file or subfolders in /backend
'Backend':
- 'app/backend/**/*'
- changed-files:
- any-glob-to-any-file: ['app/backend/**/*']

# Any changes to file or subfolders in /frontend
'Frontend':
- 'app/frontend/**/*'
- changed-files:
- any-glob-to-any-file: ['app/frontend/**/*']

# Any changes to file or subfolders in /database
'Database':
- 'app/database/**/*'
- changed-files:
- any-glob-to-any-file: ['app/database/**/*']

# Any changes to file or subfolders in /scripts
'Scripts':
- 'app/scripts/**/*'
- changed-files:
- any-glob-to-any-file: ['app/scripts/**/*']

# Any changes to file or subfolders in /openshift
'OpenShift':
- 'openshift/**/*'
- changed-files:
- any-glob-to-any-file: ['openshift/**/*']

# Any changes to file of subfolders in /tests
'Testing':
- 'tests/**/*'
- changed-files:
- any-glob-to-any-file: ['tests/**/*']

# Any change to any file in any directory with a .env in name
'Environment Variables':
- '**/*.env*'
- changed-files:
- any-glob-to-any-file: ['**/*.env*']
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: "Pull Request Labeler"
on:
- pull_request_target
on: [pull_request_target]

jobs:
triage:
Expand All @@ -9,7 +8,8 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeller.yaml
configuration-path: .github/labeler.yaml
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-jest": "^29.0.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jest-transform-stub": "^2.0.0",
Expand Down
Loading