Skip to content

chore(deps-dev): bump typescript from 5.0.4 to 5.7.2 #162

chore(deps-dev): bump typescript from 5.0.4 to 5.7.2

chore(deps-dev): bump typescript from 5.0.4 to 5.7.2 #162

Workflow file for this run

name: Test Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
coverage-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ github.workflow }}-${{ github.job }}-${{ runner.os }}-modules-test-coverage-${{ hashFiles('package-lock.json') }}
- name: install
run: |
if [ ! -d "node_modules" ]; then # If we don't have any node_modules (CircleCI cache miss scenario), run yarn install --frozen-lockfile. Otherwise, we're all set, do nothing.
npm ci
fi
- run: npm run coverage
- name: publish test coverage to code climate
if: always() && env.CC_TEST_REPORTER_ID != ''
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/coverage/lcov.info:lcov