chore(deps): bump picomatch from 2.3.1 to 2.3.2 #24
This file contains hidden or 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: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ '**' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| timeout-minutes: 10 | |
| name: Node v${{ matrix.node-version }} on ${{ matrix.os }} | |
| permissions: | |
| contents: read | |
| id-token: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [18.x, 20.x, 22.x, 24.x] | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Set git config | |
| shell: bash | |
| run: | | |
| git config --global core.autocrlf false | |
| git config --global core.symlinks true | |
| if: runner.os == 'Windows' | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - uses: flatt-security/setup-takumi-guard-npm@8f53b50568e4466f2d92504f349c05b9ffcb8b59 # v1.0.0 | |
| with: | |
| bot-id: "BT01KJW2C86AE4TDJRN1YH21K840" # 88labs | |
| - name: Install dependencies | |
| shell: bash | |
| run: npm install || (sleep 30 && npm install) || (sleep 60 && npm install) | |
| - run: git checkout -- .npmrc || true | |
| - run: npm test | |
| env: | |
| CI: true | |
| benchmark: | |
| timeout-minutes: 15 | |
| name: Measure performance impact of changes | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: 18 | |
| cache: 'npm' | |
| - uses: flatt-security/setup-takumi-guard-npm@8f53b50568e4466f2d92504f349c05b9ffcb8b59 # v1.0.0 | |
| with: | |
| bot-id: "BT01KJW2C86AE4TDJRN1YH21K840" # 88labs | |
| - name: Install dependencies | |
| run: npm install || (sleep 30 && npm install) || (sleep 60 && npm install) | |
| - run: git checkout -- .npmrc || true | |
| - run: npm run benchmark | |
| env: | |
| CI: true | |
| typescript: | |
| timeout-minutes: 15 | |
| name: Ensure typescript compatibility | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: 18 | |
| cache: 'npm' | |
| - uses: flatt-security/setup-takumi-guard-npm@8f53b50568e4466f2d92504f349c05b9ffcb8b59 # v1.0.0 | |
| with: | |
| bot-id: "BT01KJW2C86AE4TDJRN1YH21K840" # 88labs | |
| - name: Install dependencies | |
| run: npm install || (sleep 30 && npm install) || (sleep 60 && npm install) | |
| - run: git checkout -- .npmrc || true | |
| - run: npm install typescript | |
| - run: tsc index.d.ts --ignoreConfig --types node | |
| env: | |
| CI: true |