Bump @testing-library/react from 14.0.0 to 14.1.0 #65
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: React Docker image build+push Continuous Integration | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . --file prod.Dockerfile --tag mick2k1/svis:latest | |
- name: Push the Image | |
run: docker login -u mick2k1 -p ${{ secrets.SV_TOKEN }} && docker push mick2k1/svis:latest |