Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Init backend

Init backend #14

Workflow file for this run

name: Frontend Tests
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install
working-directory: ./front
run: npm install
- name: build
working-directory: ./front
run: npm run build