Fix micromatch vulnerability #121
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
# This workflow will test the building and running of the Docker container | |
name: docker | |
on: | |
push: | |
branches: ['main', 'develop'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Docker Image | |
run: | | |
docker build . < Dockerfile |