Skip to content

Merge pull request #206 from silinternational/add-steps-and-skip #220

Merge pull request #206 from silinternational/add-steps-and-skip

Merge pull request #206 from silinternational/add-steps-and-skip #220

Workflow file for this run

name: Build
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: ${{ fromJSON(vars.DEFAULT_JOB_TIMEOUT_MINUTES) }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Dependencies
run: npm ci
- name: check formatting (prettier)
run: npm run format:check
- name: Run Linting (eslint)
run: npm run lint
- name: Build
run: |
export UI_VERSION=test
mv .env.dist .env.local
npm run build