fix: exports and types #3
Workflow file for this run
This file contains hidden or 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: Production build test | |
on: | |
pull_request: | |
jobs: | |
faency: | |
name: Production build test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: enable corepack | |
run: corepack enable | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Install production dependencies | |
run: yarn workspaces focus --all --production | |
- name: Patch | |
run: yarn patch-package | |
- name: Build | |
run: yarn build |