Skip to content

Ability to chat to a specific version #1907

Ability to chat to a specific version

Ability to chat to a specific version #1907

name: Build Front End
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Build front end
run: npm run build
- name: Check types
run: npm run type-check