Update Build Pipeline

This commit is contained in:
Caesar Kabalan 2024-10-15 00:27:02 -07:00
parent 8f8a873cd1
commit 09b765a101
No known key found for this signature in database
GPG key ID: DDFEF5FF6CFAB608
2 changed files with 46 additions and 16 deletions

View file

@ -1,38 +1,33 @@
name: docker name: Docker Build
on: on:
push: #push:
branches: # branches:
- 'develop' # - 'develop'
- 'main' # - 'main'
workflow_dispatch:
env: env:
DOCKERHUB_TAG: ${{ github.ref_name == 'main' && 'latest' || 'develop' }} DOCKERHUB_TAG: ${{ github.ref_name == 'main' && 'latest' || 'develop' }}
jobs: jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- - name: Set up QEMU
name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- - name: Set up Docker Buildx
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- - name: Login to Docker Hub
name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- - id: container_name
id: container_name
uses: ASzc/change-string-case-action@v5 uses: ASzc/change-string-case-action@v5
with: with:
string: ${{ github.repository_owner }}/${{ github.event.repository.name }} string: ${{ github.repository_owner }}/${{ github.event.repository.name }}
- - name: Build and push
name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
push: true push: true

35
.github/workflows/ui-testing.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: UI Testing (Playwright)
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
working-directory: ./src
- run: npm run build --if-present
working-directory: ./src
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: ./src
- name: Run Playwright tests
run: npm test
working-directory: ./src
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30