fix: update minimatch to 3.1.5 to resolve security vulnerabilities (#… #69
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: [master] | |
| jobs: | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| - uses: actions/setup-node@v3 | |
| timeout-minutes: 5 # See https://github.com/actions/cache/issues/810 | |
| with: | |
| cache: 'yarn' | |
| - run: yarn install --network-timeout 1000000 --frozen-lockfile | |
| - run: yarn test | |
| - run: yarn run coverage | |
| - name: Upload Coverage | |
| uses: codecov/codecov-action@v3 |