[deps]: Update @types/node to v20.16.10 (#225) #236
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: Build and push Docker image | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
push-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Build and push the Docker image | |
run: | | |
docker build . -f Dockerfile -t ghcr.io/bitwarden/test-the-web:latest | |
docker push ghcr.io/bitwarden/test-the-web:latest |