Merge pull request #26847 from frappe/fix-ci-boilerplate-2
fix: CI boilerplate
This commit is contained in:
commit
a4d396ae50
1 changed files with 5 additions and 3 deletions
|
|
@ -624,11 +624,11 @@ name: CI
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
- {branch_name}
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: develop-{app_name}-${{{{ github.event.number }}}}
|
||||
group: {branch_name}-{app_name}-${{{{ github.event.number }}}}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
@ -697,7 +697,9 @@ jobs:
|
|||
${{{{ runner.os }}}}-yarn-
|
||||
|
||||
- name: Install MariaDB Client
|
||||
run: sudo apt-get install mariadb-client-10.6
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt-get install mariadb-client-10.6
|
||||
|
||||
- name: Setup
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue