Spaces:
Running
Running
Commit ·
84a1bb0
1
Parent(s): 0e42d3f
Working on implementing default workflow for building and deploying
Browse files
.github/workflows/learn-github-actions.yml
ADDED
|
@@ -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@v3
|
| 9 |
+
- uses: actions/setup-node@v3
|
| 10 |
+
with:
|
| 11 |
+
node-version: '14'
|
| 12 |
+
- run: npm install -g bats
|
| 13 |
+
- run: bats -v
|