This repository was archived by the owner on Jun 12, 2025. It is now read-only.
Testnet Deploy 1.2 #233
This file contains hidden or 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: 'Frontend CI' | |
on: | |
pull_request: | |
defaults: | |
run: | |
working-directory: frontend/gostarkme-web | |
jobs: | |
build-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Setup node' | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'frontend/gostarkme-web/.nvmrc' | |
cache-dependency-path: frontend/gostarkme-web/package-lock.json | |
- name: 'Install dependencies' | |
run: npm install | |
- name: 'Build typescript' | |
run: npm run build |