github.com/web-platform-tests/wpt.fyi@v0.0.0-20240530210107-70cf978996f1/.github/actions/make-in-docker/action.yml (about)

     1  name: Run make in Docker
     2  description: Run a make target inside a container created from Dockerfile
     3  inputs:
     4    target:
     5      description: Target to make
     6      required: true
     7  runs:
     8    using: docker
     9    image: docker://webplatformtests/wpt.fyi:latest
    10    args:
    11      - /usr/bin/make
    12      - ${{ inputs.target }}