We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb589e6 commit 6916d70Copy full SHA for 6916d70
.github/workflows/my-test.yml
@@ -0,0 +1,13 @@
1
+name: learn-github-actions
2
+run-name: ${{ github.actor }} is learning GitHub Actions
3
+on: [push]
4
+jobs:
5
+ check-bats-version:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - uses: actions/setup-node@v4
10
+ with:
11
+ node-version: '20'
12
+ - run: npm install -g bats
13
+ - run: bats -v
0 commit comments