chore(deps): update dependency typescript-eslint to v8.24.0 #2462
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [dev, 'renovate/*'] | |
pull_request: | |
branches: [dev] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
- name: Install and build | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn run lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
- name: Install dependencies and build | |
run: yarn --frozen-lockfile | |
- name: Run tests | |
run: yarn run test --coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage/lcov.info |