chore(deps-dev): bump sinon from 17.0.2 to 18.0.0 #2672
Workflow file for this run
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- release/* | |
env: | |
FORCE_COLOR: true | |
jobs: | |
mocha: | |
runs-on: ${{ matrix.os }} | |
name: Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
- ubuntu-20.04 | |
node: | |
- "14" | |
- "16" | |
- "18" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: "Install Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "${{ matrix.node }}" | |
- name: "Install dependencies" | |
run: npm ci | |
- name: "Run tests" | |
run: "npm run test" | |
coverage: | |
name: "Upload coverage" | |
runs-on: ubuntu-20.04 | |
needs: | |
- "mocha" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: "Install Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: "Install dependencies" | |
run: npm ci | |
- name: "Run tests" | |
run: "npm run test-coverage" | |
- name: "Upload to Coveralls" | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
serverless-v1: | |
runs-on: ${{ matrix.os }} | |
name: Node.js ${{ matrix.node }} on ${{ matrix.os }} with Serverless v1 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
node: | |
- "14" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: "Install Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "${{ matrix.node }}" | |
- name: "Install Serverless v1" | |
run: npm install serverless@1 | |
- name: "Install dependencies" | |
run: npm ci | |
- name: "Run tests" | |
run: "npm run test" | |
serverless-v2: | |
runs-on: ${{ matrix.os }} | |
name: Node.js ${{ matrix.node }} on ${{ matrix.os }} with Serverless v2 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
node: | |
- "14" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: "Install Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "${{ matrix.node }}" | |
- name: "Install Serverless v2" | |
run: npm install serverless@2 | |
- name: "Install dependencies" | |
run: npm ci | |
- name: "Run tests" | |
run: "npm run test" |