feat: update rendering from renderToString
to `renderToReadableStre…
#112
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: Repo root CI | |
# All workflows are triggered based on specific paths, | |
# the root repository is something that is not applicable to rust nor typescript | |
# so it has been moved in a standalone workflow | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '.github/**' | |
- '*' | |
pull_request: | |
paths: | |
- '.github/**' | |
- '*' | |
jobs: | |
build-and-test: | |
name: Check format | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install NodeJS Dependencies | |
uses: ./.github/actions/install-node-dependencies | |
- name: Test project | |
run: pnpm repo:root:format:check |