Skip to content

UI enhancement

UI enhancement #238

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches: [main, development]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Generate diff
run: git diff "origin/${{ github.base_ref }}" HEAD > diff.txt
- name: Upload diff artifact
uses: actions/upload-artifact@v4
with:
name: git-diff
path: diff.txt
- uses: actions/setup-node@v2
with:
node-version: "21"
- name: ci for api
working-directory: ./src
run: |
npm i
npm i typescript
npm run compile
npm run format
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}