initialised dummy workflow
This commit is contained in:
parent
c4a53d034e
commit
e6be9ce848
1 changed files with 13 additions and 0 deletions
13
.github/workflows/learn-github-actions.yml
vendored
Normal file
13
.github/workflows/learn-github-actions.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name: learn-github-actions
|
||||
on: [push]
|
||||
jobs:
|
||||
check-bats-version:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '14'
|
||||
- run: npm install -g bats
|
||||
- run: bats -v
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue