Skip to content

Commit

Permalink
job in container - first test
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavsinghal87 committed Feb 19, 2024
1 parent 6aca8eb commit af860e9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/job-in-container.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit af860e9

Please sign in to comment.