Skip to content

v0.101.0

v0.101.0 #577

name: Test exported .d.ts files
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
- name: Setup Environment
uses: prezly/setup-github-actions@v1
with:
node: ${{ matrix.node-version }}
pnpm: "8.4.0"
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- run: pnpm --recursive build:types
- name: Remove src folders
run: rm -rf packages/*/src
- run: pnpm --recursive test:types