Create .github/workflows/ci.yml with a build job.
GitHub Actions runs YAML pipelines from `.github/workflows/`.
TASK
----
Create the file with the EXACT content below:
mkdir -p .github/workflows
cat > .github/workflows/ci.yml <<'EOF'
name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "build"
EOF
Pass when the file exists and contains "actions/checkout".Sign in to save your code and track progress across devices.