Skip to content

switch to a tsc and tsx based setup with support for NodeNext module resolution. #71

switch to a tsc and tsx based setup with support for NodeNext module resolution.

switch to a tsc and tsx based setup with support for NodeNext module resolution. #71

Workflow file for this run

name: PR Flow
on:
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.9.0]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: pnpm
node-version: ${{ matrix.node-version }}
- run: pnpm install
- run: pnpm build
- run: pnpm test
- run: pnpm lint
- run: pnpm docgen