Awwwards Class Sandbox
Build. Stage.
Fix the Pipeline.
Identify YAML syntax bottlenecks in GitHub Actions workflows and optimize Docker sizes using multi-stage instructions.
Next Level Assessment
Practice Now Duplex Voice-Activated AI Mock Interviews
Code sandbox is only half the battle. Practice duplex voice interviews with our AI interviewer model. Receive real-time assessment scores, detailed critiques on articulation, and tailor-made development checklists.
10 Modules Course Syllabus
Interactive Landing Sandboxes
Select a topic below to inspect the curriculum lessons and practice code playground templates.
devops module
DevOps Pipeline Fixer
Identify compilation and deployment bottlenecks in CI/CD pipeline configurations.
- Configure automated build steps inside GitHub Actions workflow pipelines.
- Optimize Docker image size footprints using multi-stage build instructions.
- Secure secret strings and sensitive environment configuration variables.
playgrounds/sandbox.ts
Active Playground# Broken Workflow Pipeline Configuration
name: Release Pipeline
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and Lint
run: |
npm ci
npm run lint
npm run build