chore: mount the whole lib dir in the devcontainer (#5984)

Bind-mount the whole lib directory as /action/lib in the
devcontainer so we don't have to manually add  lib
subdirectories to the devcontainer configuration as we create
them.
This commit is contained in:
Marco Ferrari 2024-08-08 09:16:03 +02:00 committed by GitHub
parent 6fdc091361
commit 30fc3ae199
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,13 +24,8 @@
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/lib/linter.sh",
"target": "/action/lib/linter.sh",
"type": "bind"
},
{
"source": "${localWorkspaceFolder}/lib/functions",
"target": "/action/lib/functions",
"source": "${localWorkspaceFolder}/lib",
"target": "/action/lib",
"type": "bind"
}
],