Skip to content

Bump express from 4.17.3 to 4.19.2 (#17) #80

Bump express from 4.17.3 to 4.19.2 (#17)

Bump express from 4.17.3 to 4.19.2 (#17) #80

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 }}"