Skip to content

feat: new common ui #22

feat: new common ui

feat: new common ui #22

Workflow file for this run

name: front ci
on:
push:
branches:
- main
- "release-*"
paths-ignore:
- "backend/**"
pull_request:
branches:
- main
- "release-*"
paths-ignore:
- "backend/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: install deps
run: yarn
working-directory: ./site
- name: lint
run: yarn lint
working-directory: ./site
- name: build
run: yarn build
working-directory: ./site