Skip to content

frontend and backend are ready to production #1

frontend and backend are ready to production

frontend and backend are ready to production #1

Workflow file for this run

name: Frontend Pipeline
on:
push:
branches:
- main
paths:
- frontend/**
jobs:
frontend_deployment:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test