Skip to content

[Snyk] Security upgrade mysql2 from 2.3.3 to 3.9.4 #54

[Snyk] Security upgrade mysql2 from 2.3.3 to 3.9.4

[Snyk] Security upgrade mysql2 from 2.3.3 to 3.9.4 #54

name: Test Pull Requests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install -g npm@latest
npm install
npm run build --if-present
npm test
npm run lint
env:
CI: true