chore(starter): improved output and commands #675
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
name: Clients / Typescript / Tests | |
on: | |
workflow_call: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'pnpm-lock.yaml' | |
- 'clients/typescript/**' | |
- '!clients/typescript/**.md' | |
defaults: | |
run: | |
working-directory: clients/typescript | |
concurrency: | |
group: clients-typescript-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
verify_formatting: | |
name: Check formatting & linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- run: make deps | |
- run: pnpm run check-styleguide | |
check_types: | |
name: Check types | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- run: make deps | |
- run: pnpm run typecheck | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16, 18, 20] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install | |
run: make deps | |
- name: Build | |
run: make build | |
- name: Run tests | |
run: make tests |