Browse Source

learning github actions

Matthew R Kasun 4 years ago
parent
commit
0451b4282b
1 changed files with 10 additions and 0 deletions
  1. 10 0
      .github/workflows/learn-github-actions.yml

+ 10 - 0
.github/workflows/learn-github-actions.yml

@@ -0,0 +1,10 @@
+name: learn-github-actions
+on: [push]
+jobs:
+    check-bats-version:
+        runs-on: ubuntu-latest
+        steps:
+            - uses: actions/checkout@v2
+            - uses: actions/setup-node@v1
+            - run: npm install -g bats
+            - run: bats -v