Skip to content

Feat: build profile interface #42

Feat: build profile interface

Feat: build profile interface #42

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Build project
run: npm run build