gitea/.gitea/workflows/learn-github-actions.yml

14 lines
336 B
YAML
Raw Normal View History

2023-10-20 16:52:59 +00:00
name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
2023-10-20 17:14:40 +00:00
- uses: RouxAntoine/checkout@v3.5.4
2023-10-20 16:52:59 +00:00
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm install -g bats
- run: bats -v