Skip to content

feat(subbridge): sygma logo (#313) #302

feat(subbridge): sygma logo (#313)

feat(subbridge): sygma logo (#313) #302

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable
- name: Linter
run: npm run lint
- name: Typecheck
run: yarn typecheck
- name: Build all apps
run: npm run build