Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 355 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 355 Bytes

learn-github-actions.yml

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@v4 with: node-version: '20' - run: npm install -g bats - run: bats -v