Skip to content

deps: bump eslint from 8.57.1 to 9.39.2 #463

deps: bump eslint from 8.57.1 to 9.39.2

deps: bump eslint from 8.57.1 to 9.39.2 #463

name: Database Tools Tests
on:
pull_request:
jobs:
leia-tests:
runs-on: ${{ matrix.os }}
env:
TERM: xterm
strategy:
matrix:
os:
- ubuntu-latest
node-version:
- 'lts/*'
leia-tests:
- sql-export-example
- sql-import-example
steps:
# Install deps and cache
# Eventually it would be great if these steps could live in a separate YAML file
# that could be included in line to avoid code duplication
- name: Checkout code
uses: actions/checkout@v6
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Install docker-compose
run: |
REPO="docker/compose"
LATEST_RELEASE=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --silent "https://api.github.com/repos/${REPO}/releases/latest" | jq -r .tag_name)
sudo curl -L "https://github.com/${REPO}/releases/download/${LATEST_RELEASE}/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose && sudo chmod 0755 /usr/local/bin/docker-compose
- name: Disable usage and error reporting
run: |
mkdir -p ~/.lando/cache
echo false > ~/.lando/cache/report_errors
sed -i "s/report: true.*/report: false/" config.yml
- name: Package CLI
run: |
npm install @lando/acquia@^0.5.0 @lando/apache@^0.5.0 @lando/argv@^1.1.0 @lando/backdrop@^0.5.0 @lando/dotnet@^0.5.0 @lando/drupal@^0.5.0 @lando/elasticsearch@^0.5.0 @lando/go@^0.5.0 @lando/joomla@^0.5.0 @lando/lagoon@^0.5.0 @lando/lamp@^0.5.0 @lando/laravel@^0.5.0 @lando/lemp@^0.5.0 @lando/mariadb@^0.5.0 @lando/mean@^0.5.0 @lando/memcached @lando/mongo@^0.5.0 @lando/mssql@^0.5.0 @lando/mysql@^0.5.0 @lando/nginx@^0.5.0 @lando/node@^0.5.0 @lando/pantheon@^0.5.0 @lando/php@^0.5.0 @lando/postgres@^0.5.0 @lando/python@^0.5.0 @lando/redis@^0.5.0 @lando/ruby@^0.5.0 @lando/solr@^0.5.0 @lando/symfony@^0.5.0 @lando/tomcat@^0.5.0 @lando/varnish@^0.5.0 @lando/wordpress@^0.5.0 @lando/[email protected] @lando/[email protected]
sed -i 's!bitnami/mysql:5.7.29-debian-10-r51!bitnami/mysql:5.7.29-r8!' node_modules/@lando/mysql/services/mysql/builder.js
sed -i 's!bitnami/mysql:8.0.19-debian-10-r57!bitnami/mysql:8.0.19-r6!' node_modules/@lando/mysql/services/mysql/builder.js
sed -i 's!-debian-10-r9!!' node_modules/@lando/postgres/services/postgres/builder.js
sed -i -r 's!bitnami/([a-z0-9]+:)!bitnamilegacy/\1!' node_modules/@lando/*/services/*/builder.js
npm run build:cli
- name: Replace source CLI with packaged one
run: sudo mv ./dist/@lando/cli /usr/local/bin/lando
- name: Verify we can run the packaged CLI
run: |
lando version
lando config
# This block should eventually become use lando/actions-leia@v2
- name: Generate tests
run: npm run generate:tests
- name: Run ${{ matrix.leia-tests }} tests
run: npx mocha --timeout 900000 ./test/${{ matrix.leia-tests }}.func.js