initialised dummy workflow
This commit is contained in:
parent
5cec73eb83
commit
3dc6e42bf4
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