17 lines
309 B
YAML
17 lines
309 B
YAML
name: Docker CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Hello
|
|
run: |
|
|
echo "Hello from Docker container!"
|
|
node --version
|
|
echo "Checkout URL should use host.containers.internal"
|