chore(deps): update dependency remark-preset-lint-markdown-style-guide to ^5.1.3 #3503
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: Node CI Pull request | |
concurrency: | |
group: pr-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: run all checks and get coverage | |
run: yarn run all-checks | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
directory: packages/rooks/src/coverage | |
size-limit: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- uses: andresz1/[email protected] | |
with: | |
directory: "packages/rooks" | |
github_token: ${{ secrets.GITHUB_TOKEN }} |