Skip to content

fix: remove incorrect dynamic route #2

fix: remove incorrect dynamic route

fix: remove incorrect dynamic route #2

Workflow file for this run

name: Frontend CI
on:
# Triggers the workflow on push or pull request events but only for the "dev" branch
push:
branches: [ "dev" , "prod"]
pull_request:
branches: [ "dev", "prod" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build frontend:

Check failure on line 14 in .github/workflows/frontend-ci.yml

View workflow run for this annotation

GitHub Actions / Frontend CI

Invalid workflow file

The workflow is not valid. .github/workflows/frontend-ci.yml (Line: 14, Col: 3): The identifier 'build frontend' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: install frontend dependencies
run: npm ci
- name: build astro
run: astro build