Skip to content

fix: add link to receipt #499

fix: add link to receipt

fix: add link to receipt #499

Workflow file for this run

name: client
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'packages/interface/**'
- 'packages/core/**'
- 'packages/transport/**'
- 'packages/client/**'
pull_request:
branches:
- main
paths:
- 'packages/interface/**'
- 'packages/core/**'
- 'packages/transport/**'
- 'packages/client/**'
- '.github/workflows/client.yml'
jobs:
check:
name: Typecheck
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
project:
- client
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: pnpm/action-setup@v2.0.1
id: pnpm-install
with:
version: 7
run_install: true
- name: Typecheck
uses: gozala/typescript-error-reporter-action@v1.0.8
with:
project: packages/${{matrix.project}}/tsconfig.json
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 14
- 16
os:
- ubuntu-latest
- windows-latest
- macos-latest
project:
- client
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: pnpm/action-setup@v2.0.1
id: pnpm-install
with:
version: 7
run_install: true
- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node
- name: Test (Web)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:web