Skip to content

Bump braces from 3.0.2 to 3.0.3 (#18) #81

Bump braces from 3.0.2 to 3.0.3 (#18)

Bump braces from 3.0.2 to 3.0.3 (#18) #81

Workflow file for this run

name: mysql
on:
push:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: mirromutth/[email protected]
with:
mysql database: "testdb"
mysql version: "5.7"
mysql user: "test"
mysql password: ${{ secrets.MYSQL_PASSWORD }}
- run: npm ci
- run: npm run test:mysql
env:
MYSQL_PASSWORD: "${{ secrets.MYSQL_PASSWORD }}"