Skip to content

removed unnecessary comments #43

removed unnecessary comments

removed unnecessary comments #43

Workflow file for this run

name: Build Frontend
on:
push:
paths:
- frontend/**
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v3
- name: Install specific npm version
run: npm install [email protected]
- name: Install npm modules
run: npm install
working-directory: ./frontend
- name: Build npm
run: npm run build
working-directory: ./frontend