chore(deps): update dependency std-mocks to v2 #266
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ assigned, opened, synchronize, reopened, labeled ] | |
name: ci | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [18, 20] | |
os: [ubuntu-latest, windows-latest] | |
env: | |
OS: ${{ matrix.os }} | |
NODE_VERSION: ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- run: git fetch --prune --unshallow | |
- run: git config --global user.name 'Actions' | |
- run: git config --global user.email '[email protected]' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: node --version | |
- run: npm install --engine-strict | |
- run: npm test | |
- run: npm run coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
env_vars: OS, NODE_VERSION |