build(deps): bump semver from 7.5.4 to 7.6.3 (#170) #439
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.4, # Known good version of 20 which ran the previous Mocha and mock-fs based tests. If you go back to re-run those, tests Node 20.4 is the last version mock-fs worked with | |
20, | |
lts/* | |
] | |
os: [ | |
ubuntu-latest, | |
windows-latest | |
] | |
env: | |
OS: ${{ matrix.os }} | |
NODE_VERSION: ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 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@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: node --version | |
- run: npm install --engine-strict | |
- run: npm test | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: OS, NODE_VERSION |