Mid-Level
August 19, 2026

Spot the bug: DevOps

One snippet. Find the bug, or prove there isn't one.

yaml
1name: CI
2on: pull_request
3jobs:
4  test:
5    runs-on: ubuntu-latest
6    steps:
7      - uses: actions/checkout@v4
8      - uses: actions/setup-node@v4
9        with:
10          node-version: '20'
11      - name: Install
12        run: npm ci
13      - name: Lint
14        run: npm run lint
15      - name: Test
16        run: npm test
17      - name: Upload coverage
18        if: always()
19        uses: actions/upload-artifact@v4
20        with:
21          name: coverage
22          path: coverage/
23          if-no-files-found: warn

Click the lines that carry the problem.

Your verdict

One attempt per day. The answer shows up right after.

Keep your streak

Create an account to keep your streak and track your progress.

Create an account