Skip to content

Changed hardcoded logo path to be fetched from env variable (#127) #129

Changed hardcoded logo path to be fetched from env variable (#127)

Changed hardcoded logo path to be fetched from env variable (#127) #129

Workflow file for this run

name: Build the app
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
# TODO: Enable me once the tests are passing
# - name: Test
# run: npm run test
- name: Prepare production build
run: npm run build:milkomeda-c1-testnet