Skip to content

new frontend CD flow. #1

new frontend CD flow.

new frontend CD flow. #1

Workflow file for this run

name: Frontend Application CI

Check failure on line 1 in .github/workflows/frontend-ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/frontend-ci.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: linting, testing
on:
workflow_call:
inputs:
app_name:
required: true
type: string
working_directory:
type: string
default: "."
codecov_flag:
type: string
jobs:
linting:
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest" ]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
working-directory: ${{ inputs.working_directory }}
steps:
testing:
needs: linting
defaults:
run:
shell: bash
working-directory: ${{ inputs.working_directory }}
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest" ]
runs-on: ${{ matrix.os }}
steps: