Skip to content

fix: include meta fields only in internal type #41

fix: include meta fields only in internal type

fix: include meta fields only in internal type #41

Workflow file for this run

name: Publish Fork
on:
push:
branches:
- fgnass
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:ci
- name: Build packages
run: npm run build
- name: Publish packages
run: node scripts/publish-fork.js
env:
# Add NPM_TOKEN as a repository secret in your repository settings
# Settings > Secrets and variables > Actions > New repository secret
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}