Pulling fix/genes-various into develop #44
Workflow file for this run
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: Building (Pull Request) | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build-frontpage: | |
name: Build Frontpage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Check out Code | |
uses: actions/checkout@v4 | |
- name: Install Turbo | |
run: yarn global add [email protected] | |
- name: Set Up Environment | |
run: mv apps/dicty-frontpage/.env.development apps/dicty-frontpage/.env.production | |
- name: Prune Application | |
run: turbo prune --scope=dicty-frontpage | |
- name: Open Output Directory | |
run: cd out | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build Application | |
run: yarn turbo run build --filter=dicty-frontpage | |
build-stock-center: | |
name: Build Stock Center | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Check out Code | |
uses: actions/checkout@v4 | |
- name: Install Turbo | |
run: yarn global add [email protected] | |
- name: Set Up Environment | |
run: mv apps/stock-center/.env.development apps/stock-center/.env.production | |
- name: Prune Application | |
run: turbo prune --scope=stock-center | |
- name: Open Output Directory | |
run: cd out | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build Application | |
run: yarn turbo run build --filter=stock-center | |
build-genomepage: | |
name: Build Genome Page | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Check out Code | |
uses: actions/checkout@v4 | |
- name: Install Turbo | |
run: yarn global add [email protected] | |
- name: Set Up Environment | |
run: mv apps/genome-page/.env.development apps/genome-page/.env.production | |
- name: Prune Application | |
run: turbo prune --scope=genomepage | |
- name: Open Output Directory | |
run: cd out | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build Application | |
run: yarn turbo run build --filter=genomepage | |
build-publication: | |
name: Build Publication | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Check out Code | |
uses: actions/checkout@v4 | |
- name: Install Turbo | |
run: yarn global add [email protected] | |
- name: Set Up Environment | |
run: mv apps/publication/.env.development apps/publication/.env.production | |
- name: Prune Application | |
run: turbo prune --scope=publication | |
- name: Open Output Directory | |
run: cd out | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build Application | |
run: yarn turbo run build --filter=publication | |