Update dependency eslint-plugin-ghost to v2.18.1 #2695
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: Test Suite | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'renovate/*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) | |
strategy: | |
matrix: | |
node: [ 18, 20 ] | |
env: | |
- DB: sqlite3 | |
NODE_ENV: testing | |
- DB: mysql | |
NODE_ENV: testing-mysql | |
env: | |
DB: ${{ matrix.env.DB }} | |
NODE_ENV: ${{ matrix.env.NODE_ENV }} | |
database__connection__password: root | |
name: Node ${{ matrix.node }} - ${{ matrix.env.DB }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Shutdown MySQL | |
run: sudo service mysql stop | |
if: matrix.env.DB == 'mysql' | |
- uses: mirromutth/mysql-action@v1.1 | |
if: matrix.env.DB == 'mysql' | |
with: | |
mysql version: '8.0' | |
mysql database: 'bookshelf_relations_testing' | |
mysql root password: 'root' | |
- run: yarn | |
- run: yarn test |