diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml new file mode 100644 index 000000000..c633bf942 --- /dev/null +++ b/.github/workflows/learn-github-actions.yml @@ -0,0 +1,12 @@ +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