Created
July 23, 2022 18:01
-
-
Save amaurybsouza/76826871994daf3c49870665def38572 to your computer and use it in GitHub Desktop.
github-actions-example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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