Skip to content

Geloosa is running main branch checks and deploy πŸš€ #9

Geloosa is running main branch checks and deploy πŸš€

Geloosa is running main branch checks and deploy πŸš€ #9

Workflow file for this run

name: Main Branch
run-name: ${{ github.actor }} is running main branch checks and deploy πŸš€
on:
push:
branches: [main, EO-28/deploy-to-github-pages]
env:
CI: true
BASE_URL: ${{ vars.BASE_URL }}
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
unit-test:
uses: ./.github/workflows/job-unit-test.yml
e2e-test:
uses: ./.github/workflows/job-e2e-test.yml
deploy:
needs: [unit-test, e2e-test]
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
with:
timeout: 300000