Implement foundations of OAuth2 and co for members #263
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: | |
- react-rewrite | |
pull_request: | |
branches: | |
- react-rewrite | |
jobs: | |
Analyze: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Setup Biome CLI | |
uses: biomejs/setup-biome@v2 | |
- name: Run Biome | |
run: biome ci --error-on-warnings --formatter-enabled=false --organize-imports-enabled=false react/src | |