Update Web App to allow AlphaFold 3 Structure Input #36
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: Privateer Web App Frontend Lint | |
on: | |
pull_request: | |
branches: [ "webapp" ] | |
paths: | |
- webapp/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build frontend | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- run: | | |
export NODE_OPTIONS=--max-old-space-size=8192 | |
cd webapp | |
npm ci | |
npm run lint | |
npm run prettier | |