fix(helpers): JSON helpers' return types incorrectly have Date
s and other JS/Node-native instances that require data type metadata.
#1001
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: preview | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/test.yml' | |
- 'assets/**' | |
- 'docs/**' | |
- 'example/**' | |
- 'site/**' | |
- 'test/**' | |
- '.npmignore' | |
- '.prettierignore' | |
- '.prettierrc' | |
- '.renovaterc.json' | |
- '*.md' | |
- 'LICENSE' | |
jobs: | |
release: | |
name: Release preview build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Release preview version | |
run: npx [email protected] publish --template './example' |