diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..19f857a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +# defining the name + +name: learn-github-actions + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@4 + - uses: actions/setup-node@3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v + + +