[Hacker Rank] Interview Preparation Kit: Dictionaries and Hashmaps: T… #1334
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 Image CI | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: ["main", "develop", "feature/*"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
name: "Build & Test in Docker" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Build the Docker image | |
run: make compose/rebuild | |
- name: Lint in Docker image | |
run: make compose/lint | |
- name: Test in Docker image | |
run: make compose/test | |
- name: Run in Docker image | |
run: make compose/run | |
- name: Tag Docker image | |
run: > | |
docker tag | |
algorithm-exercises-ts:latest | |
algorithm-exercises-ts:${{ github.sha }} | |
- name: Run Snyk to check Docker image for vulnerabilities | |
# Snyk can be used to break the build when it detects vulnerabilities. | |
# In this case we want to upload the issues to GitHub Code Scanning | |
continue-on-error: true | |
uses: snyk/actions/docker@master | |
env: | |
# yamllint disable rule:line-length | |
# In order to use the Snyk Action you will need to have a Snyk API token. | |
# See https://docs.snyk.io/integrations/ci-cd-integrations/github-actions-integration#getting-your-snyk-token | |
# or you can sign up for free at https://snyk.io/login | |
# yamllint enable rule:line-length | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
image: algorithm-exercises-ts:latest | |
args: --file=Dockerfile | |
# yamllint disable rule:comments-indentation | |
# - name: Upload result to GitHub Code Scanning | |
# uses: github/codeql-action/upload-sarif@v2 | |
# with: | |
# sarif_file: snyk.sarif | |
# yamllint enable rule:comments-indentation |