Skip to content

noelb1 is learning GitHub Actions #15

noelb1 is learning GitHub Actions

noelb1 is learning GitHub Actions #15

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:
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.