diff --git a/.gitea/workflows/first.yaml b/.gitea/workflows/first.yaml new file mode 100644 index 0000000..5f4918b --- /dev/null +++ b/.gitea/workflows/first.yaml @@ -0,0 +1,13 @@ +name: learn actions +run-name: ${{github.actor}} is learning actions +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-node@v7 + with: + node-version: '24' + - run: npm install -g bats + - run: bats -v