fix(api): update cors for 127.0.0.1 #102
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: Code Quality Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v3 | |
name: Setup pnpm | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
name: Setup Node | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- uses: actions/setup-dotnet@v4 | |
name: Setup .NET | |
with: | |
dotnet-version: 8.x | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm format:check | |
# - run: pnpm typecheck | |
- run: pnpm lint:ci | |
# - run: pnpm affected:build --parallel=3 |