chore(deps): bump yaml from 2.6.1 to 2.7.0 (#257) #622
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 20.x | |
- 22.x | |
mssql-version: | |
- ^7.0.0 | |
- ^8.0.0 | |
- ^9.0.0 | |
- ^10.0.0 | |
- ^11.0.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Install mssql | |
run: npm install --no-save mssql@${{ matrix.mssql-version }} | |
- name: Lint | |
run: npm run lint | |
- name: Start databases | |
uses: hoverkraft-tech/[email protected] | |
- name: Wait for databases to be available | |
run: sleep 10 | |
- name: Test | |
run: npm run cover | |
- name: Publish to coveralls.io | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close parallel build | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true |