Support grpc es unimplemented service #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
- push | |
name: CI | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.tool-versions' | |
- name: Yarn install | |
run: | | |
yarn install --immutable --immutable-cache | |
shell: bash | |
- name: Run Biome | |
run: | | |
yarn biome ci . | |
- name: Build for type check | |
run: | | |
yarn build | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.tool-versions' | |
- name: Yarn install | |
run: | | |
yarn install --immutable --immutable-cache | |
shell: bash | |
- name: Test with coverage | |
run: | | |
yarn test --coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
verbose: true | |
check-is-publishable-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.tool-versions' | |
- name: Yarn install | |
run: | | |
yarn install --immutable --immutable-cache | |
shell: bash | |
- name: Check is publishable versions | |
run: | | |
yarn ts-node scripts/checkIsPublishableVersions.ts |