fix: improve type of values accepted by date/time/number formats #770
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: docs-suite | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| paths: | |
| - website/** | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install dependencies | |
| working-directory: website | |
| run: yarn install | |
| - name: Build | |
| working-directory: website | |
| run: yarn build | |
| - name: Lint | |
| working-directory: website | |
| run: yarn lint | |
| - name: Check Formatting | |
| working-directory: website | |
| run: yarn checkFormat |