Skip to content

(launch, govern) feat: support mode network #77

(launch, govern) feat: support mode network

(launch, govern) feat: support mode network #77

Workflow file for this run

# TODO: figure out how to trigger workflow from vercel for nx
name: Launch
on:
push:
branches:
- main
paths:
- 'apps/launch/**'
pull_request:
branches:
- main
paths:
- 'apps/launch/**'
jobs:
build:
continue-on-error: False
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn nx lint launch
- name: Run Test
run: yarn nx test launch