docs: adding notice of beta #24
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: Lint & Format (Javascript) | |
on: | |
pull_request: | |
branches: | |
- main | |
- nightly | |
push: | |
branches: | |
- main | |
- nightly | |
jobs: | |
run-scripts: | |
name: Run linters & formatters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run linter (eslint) | |
run: pnpm lint | |
- name: Run formatter (Prettier) | |
run: pnpm format | |