Bump mysql2 from 2.3.3 to 3.9.8 #81
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: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo GITHUB_BRANCH=${GITHUB_REF##*/} >> $GITHUB_ENV | |
- name: Install searchd | |
run: | | |
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb && | |
sudo dpkg -i manticore-repo.noarch.deb && | |
sudo apt-get update && | |
sudo apt-get install manticore | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 4.4 | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 6 | |
- run: make deps-ci | |
- uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: make test-ci |