Update dependency @types/node to v20.17.12 #637
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-run | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run registry | |
uses: ./internal/docker-run | |
with: | |
ports: 5000:5000 | |
image: registry:2 | |
- name: Test | |
run: | | |
docker pull alpine:latest | |
docker tag alpine:latest localhost:5000/alpine:latest | |
docker push localhost:5000/alpine:latest |