fix(deps): update dependency enquirer to v2.4.1 #847
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: Test Merge Commit | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
test-merge: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
# arch isn't used and we have no way to use it currently | |
- { os: macos-latest, arch: x64 } | |
- { os: ubuntu-latest, arch: x64 } | |
- { os: windows-latest, arch: x64 } | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- run: npm test | |
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3 | |
with: | |
directory: ./coverage/ |