test_repo/.github/workflows/docker_demo.yml
Brendan 66bde2ef07
Some checks are pending
Windows Action / test (push) Waiting to run
GitHub Actions Demo / Explore-GitHub-Actions (push) Successful in -41s
trying something
2024-03-19 10:10:50 -06:00

13 lines
342 B
YAML

name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
container: node:18
steps:
- uses: actions/checkout@v4
- run: |
docker run hello-world
- run: echo "🍏 This job's status is ${{ job.status }}."