Skip to content

Commit

Permalink
add client GH Actions config p1
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Quintanilla committed Nov 10, 2024
1 parent d99ca53 commit 1ececdb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/client-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches: [main, develop]
paths:
- "client/**"
pull_request:
branches: [main, develop]
paths:
- "client/**"

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client/

steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm test
- name: Build
run: npm run build

0 comments on commit 1ececdb

Please sign in to comment.