Skip to content

Update and rename CICD.yml to CI.yml #1

Update and rename CICD.yml to CI.yml

Update and rename CICD.yml to CI.yml #1

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
- "development"
pull_request:
branches:
- "main"
- "development"
jobs:
build:
runs-on: ubuntu-latest
#needs: [test_frontend]
steps:
- name: Checkout repository
- uses: actions/checkout@v4
- name: Upload Coverage Artifact
uses: actions/upload-artifact@v2
with:
name: coverage
path: ./coverage
- name: Download Coverage Artifacts
uses: actions/download-artifact@v2
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
env:
COVERALLS_REPO_TOKEN: PVE088TeMiE2YcwDT0Ymr7s7UBhbB51dF
# deploy_vercel:
# needs: [test_frontend, upload_coverage]
# uses: ./.github/workflows/deploy_vercel.yml
# secrets: inherit
#test_frontend:
# uses: ./.github/workflows/test_frontend.yml
# secrets: inherit
#test_backend:
# uses: ./.github/workflows/test_backend.yml
# secrets: inherit