Skip to content

chore: bump bufbuild/buf-setup-action from 1.27.1 to 1.27.2 (#216) #156

chore: bump bufbuild/buf-setup-action from 1.27.1 to 1.27.2 (#216)

chore: bump bufbuild/buf-setup-action from 1.27.1 to 1.27.2 (#216) #156

Workflow file for this run

name: TypeScript
on:
pull_request:
paths:
- js/**
- .github/workflows/typescript.yml
push:
branches:
- master
permissions:
contents: read
concurrency:
group: ts-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run test suite
working-directory: ./js
run: yarn && yarn test
coverage:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate code coverage
working-directory: ./js
run: yarn && yarn coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: js/coverage/lcov.info
flags: typescript
fail_ci_if_error: true