Skip to content

Update first-workflow.yml #16

Update first-workflow.yml

Update first-workflow.yml #16

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm install -g bats
- run: bats -v
job2:
jobs:
cow:
name: Cowsays
runs-on: ubuntu-latest
steps:
- name: Ship it
uses: mscoutermarsh/cowsays-action@master
with:
text: 'ship ship ship!'
color: 'red

Check failure on line 25 in .github/workflows/first-workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/first-workflow.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
echo Add other actions to build,
echo test, and deploy your project.