Skip to content

Commit

Permalink
Create build-test-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTunchi authored Jun 23, 2024
1 parent 5d28945 commit 8b855ef
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest


steps:
- name: check out the repo
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- name: install npm dependencies
run: npm install
- name: start backend
run: npm run start-be
- name: start frontend
run: npm run start-fe
- name: start test
run: npm run test:ui

0 comments on commit 8b855ef

Please sign in to comment.