Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 7.15.0 to 8.0.0 #1507

chore(deps-dev): bump @typescript-eslint/parser from 7.15.0 to 8.0.0

chore(deps-dev): bump @typescript-eslint/parser from 7.15.0 to 8.0.0 #1507

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test on Node
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install Node dependencies
run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- name: Test coverage
run: yarn test --coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}