workflow
This commit is contained in:
parent
5276d8d5ee
commit
bceeea9d93
|
@ -0,0 +1,13 @@
|
||||||
|
name: learn-github-actions
|
||||||
|
run-name: ${{ github.actor }} is learning GitHub Actions
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
check-bats-version:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '14'
|
||||||
|
- run: npm install -g bats
|
||||||
|
- run: bats -v
|
Loading…
Reference in New Issue