fix(app): channel lists #43
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: 'Deploy Standalone Node Services' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
service: [scheduler, list-api, events, notifications, farcaster-api, signer-api, notifications-api, nft-api, api, dashboard] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Check turbo-ignore for changes | |
id: turbo_ignore | |
continue-on-error: true | |
run: | | |
npx turbo-ignore ${{ matrix.service}} | |
- name: Railway Deploy | |
if: steps.turbo_ignore.outcome == 'failure' | |
uses: bervProject/[email protected] | |
with: | |
railway_token: ${{ secrets.RAILWAY_TOKEN }} | |
service: ${{ matrix.service }} | |