Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amaurybsouza/76826871994daf3c49870665def38572 to your computer and use it in GitHub Desktop.
Save amaurybsouza/76826871994daf3c49870665def38572 to your computer and use it in GitHub Desktop.
github-actions-example
name: learn-github-actions
on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm install -g bats
- run: bats -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment