build #26
This file contains 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: build | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 23 | |
- run: npm install | |
- run: | | |
cat samples/playground.lexical.json | npx ts-node lexical-cli-render.ts | |
# if does not use JSX/TSX imports, can use node instea of npx ts-node: | |
cat samples/playground-without-emoji.lexical.json | node lexical-cli-render-without-emoji.ts |