Skip to content

Connect Problems UI to Node API and add slug-based solving flow #9

Connect Problems UI to Node API and add slug-based solving flow

Connect Problems UI to Node API and add slug-based solving flow #9

Workflow file for this run

name: Frontend CI
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js v20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run build
run: npm run build