8000 adding new componets for the frontend · goatdev7/e-store@50f3897 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

adding new componets for the frontend #31

adding new componets for the frontend

adding new componets for the frontend #31

Workflow file for this run

name: Learning actions
on:
push:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependcies in front end
run: |
cd frontend
npm install
- name: Install dependcies in backend end
run: |
cd backend
npm install
- name: Build the frontend app
run: |
cd frontend
npm run build
0