chore(deps-dev): bump markdownlint-cli from 0.48.0 to 0.49.0 in the dev-dependencies group across 1 directory #85
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !contains(github.ref, 'main') }} | |
| env: | |
| HUSKY: 0 # Skip Husky during CI: https://typicode.github.io/husky/how-to.html#ci-server-and-docker | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm # https://github.com/actions/setup-node#caching-global-packages-data | |
| - name: Install dependencies | |
| run: npm ci --no-audit --no-fund --prefer-offline | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Lint | |
| run: npm run lint | |
| coverage: | |
| runs-on: ubuntu-latest | |
| env: | |
| CODECOV: true | |
| steps: | |
| - name: Set up checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm # https://github.com/actions/setup-node#caching-global-packages-data | |
| - name: Install dependencies | |
| run: npm ci --no-audit --no-fund --prefer-offline | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Test and test coverage | |
| run: npm run coverage | |
| - name: Upload results to codecov | |
| uses: codecov/codecov-action@v7 |