Skip to content

feat(devops): Deploy to test environments via CI #7356

feat(devops): Deploy to test environments via CI

feat(devops): Deploy to test environments via CI #7356

name: Frontend Checks
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Lint
run: npm run lint -- --max-warnings 0
check:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Lint
run: npm run check
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Test
run: npm run test
may-merge:
if: always()
needs: ['lint', 'check', 'test']
runs-on: ubuntu-24.04
steps:
- name: Cleared for merging
run: |
if [ "${{ needs.lint.result }}" == "success" ] && [ "${{ needs.check.result }}" == "success" ] && [ "${{ needs.test.result }}" == "success" ]; then
echo "This PR is cleared for merging"
else
echo "This PR is not cleared for merging"
exit 1
fi