GitHub
GITHUB-ACTIONS · Question #72
How should you install the bats NPM package in your workflow? A. B. C. D.
Sign in or unlock GITHUB-ACTIONS to reveal the answer and full explanation for question #72. The question stem and answer options stay visible for context.
Author and maintain workflows
Question
How should you install the bats NPM package in your workflow? A. B. C. D.
Exhibits
Options
- Ajobs: example-job: steps: - npm install -g bats
- Bjobs: steps: - run: npm install -g bats
- Cjobs: runs-on: ubuntu-latest run: npm install -g bats
- Djobs: example-job: runs-on: ubuntu-latest steps: - run: npm install -g bats
Unlock GITHUB-ACTIONS to see the answer
You've previewed enough free GITHUB-ACTIONS questions. Unlock GITHUB-ACTIONS for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#NPM packages#workflow steps#package installation#workflow syntax

