From af860e9fd8d55ec8a44ff3e27ae431164d809bef Mon Sep 17 00:00:00 2001 From: Vaibhav Singhal Date: Mon, 19 Feb 2024 19:28:03 +0000 Subject: [PATCH] job in container - first test --- .github/workflows/job-in-container.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/job-in-container.yml diff --git a/.github/workflows/job-in-container.yml b/.github/workflows/job-in-container.yml new file mode 100644 index 0000000..d41c7bd --- /dev/null +++ b/.github/workflows/job-in-container.yml @@ -0,0 +1,18 @@ +name: learn-github-actions +run-name: ${{ github.actor }} is learning GitHub Actions +on: + push: + branches: + - job-in-container +jobs: + check-bats-version: + runs-on: ubuntu-latest + container: + image: node:16 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v