Skip to content

titus-mumo made changes #47

titus-mumo made changes

titus-mumo made changes #47

Workflow file for this run

name: build
run-name: ${{github.actor}} made changes
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
install dependencies:

Check failure on line 13 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 13, Col: 3): The identifier 'install dependencies' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/build.yml (Line: 21, Col: 3): The identifier 'start db' 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:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21.7.2'
- run: bun install
start db:
needs: install dependencies
runs-on: ubuntu-latest
steps:
- run: bun run db:dev
start server:
needs: [install dependencies, start db]
runs-on: ubuntu-latest
steps:
- run: bun run dev