feat: add asset metadata & branding service #198
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: Backend CI | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| paths: | |
| - 'app/backend/**' | |
| pull_request: | |
| branches: [ main, develop ] | |
| paths: | |
| - 'app/backend/**' | |
| jobs: | |
| build-and-test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: app/backend | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - name: Install dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Lint | |
| run: pnpm run lint | |
| - name: Build | |
| run: pnpm run build | |
| # Tests are run separately to avoid CI failures during development | |
| # Uncomment when tests are stable | |
| # - name: Run Unit Tests | |
| # run: pnpm run test:unit | |
| # env: | |
| # NODE_ENV: test | |
| # STELLAR_NETWORK: testnet | |
| # SUPABASE_URL: https://test.supabase.co | |
| # SUPABASE_ANON_KEY: test-key |