Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0 #372

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0 #372

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: "Coverage"
# Controls when the workflow will run
on:
# Triggers the workflow on pull request or push events but only for the master branch
pull_request:
branches: [master]
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Run the tests
run: yarn test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3