Bump the npm_and_yarn group across 1 directory with 11 updates #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request | |
jobs: | |
lint-bash-scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Lint Bash scripts | |
uses: docker://koalaman/shellcheck-alpine:v0.7.0 | |
with: | |
args: .github/lint-scripts.sh | |
ci: | |
runs-on: ubuntu-latest | |
needs: lint-bash-scripts | |
services: | |
mysql: | |
image: mysql:5 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
ports: | |
- 13306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
postgres: | |
image: postgres:11 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
strategy: | |
matrix: | |
dbs: | |
- mysql | |
- postgresql | |
env: | |
RAILS_ENV: test | |
ZAMMAD_DBS: ${{ matrix.dbs }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6.6 | |
- name: Increase MySQL max_allowed_packet to 1GB (workaround for unknown/missing service option) | |
run: | | |
sudo apt-get install -y mysql-client | |
mysql --host 127.0.0.1 --port 13306 -uroot -ppassword -e "SET GLOBAL max_allowed_packet=1073741824;" | |
- name: CI | |
run: .github/ci.sh |