Skip to content

fix: update src/lib.js of @ucanto/interface to have an export statement #414

fix: update src/lib.js of @ucanto/interface to have an export statement

fix: update src/lib.js of @ucanto/interface to have an export statement #414

Workflow file for this run

name: core
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'packages/core/**'
- 'packages/interface/**'
pull_request:
branches:
- main
paths:
- 'packages/core/**'
- 'packages/interface/**'
- '.github/workflows/core.yml'
jobs:
check:
name: Typecheck
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
project:
- core
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:
- core
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