build(deps): bump micromatch from 4.0.5 to 4.0.8 #435
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: any-pr | |
on: [pull_request] | |
jobs: | |
build_test: | |
name: Build test | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
os: [macos-latest, ubuntu-latest] # not include windows due to node-gyp bug | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Logging python version for future debugging | |
- run: python -V | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- run: pip install setuptools | |
- run: yarn install --frozen-lockfile | |
- run: yarn lint | |
- run: yarn build | |
- run: yarn test --coverage | |
- run: yarn benchmark |