Skip to content

Commit

Permalink
Update first-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
noelb1 authored Dec 2, 2023
1 parent 8d9077e commit e546155
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/first-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
jobs:
job1:
check-bats-version:
runs-on: ubuntu-latest
steps:
Expand All @@ -11,3 +12,18 @@ jobs:
node-version: '14'
- run: npm install -g bats
- run: bats -v
jobs:
job2:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Run Crossways action
uses: owner/repo@version # replace with actual repository and version

- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

0 comments on commit e546155

Please sign in to comment.