Merge pull request #126 from danielemery/renovate/eslint-monorepo #31
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
# This workflow exists solely to send the current code coverage of the `main` branch to Codecov. This is used | |
# both for the README badge and for the codecov bot's comment on PRs. | |
name: Main | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
env: | |
NODE_VERSION: 22.10.0 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Configure node | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install packages | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Run unit tests | |
run: npm run test:ci | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |