feat: implement jq like selectors per ucan delegation policy notation #461
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: transport | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/core/**' | |
- 'packages/interface/**' | |
- 'packages/transport/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'packages/core/**' | |
- 'packages/interface/**' | |
- 'packages/transport/**' | |
- '.github/workflows/transport.yml' | |
jobs: | |
check: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
project: | |
- transport | |
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/[email protected] | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: true | |
- name: Typecheck | |
uses: gozala/[email protected] | |
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: | |
- transport | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: pnpm/[email protected] | |
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 |