Skip to content

Update typescript 5.4.3 → 5.4.4 (patch) #151

Update typescript 5.4.3 → 5.4.4 (patch)

Update typescript 5.4.3 → 5.4.4 (patch) #151

Workflow file for this run

name: Pipeline
on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
pull_request:
branches:
- "*"
paths-ignore:
- '**/README.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run tests with coverage
run: npm run tc
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}