fix(deps): update dependency dotenv to v16.4.7 #1108
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" | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/[email protected] | |
with: | |
node-version: '17.3.0' | |
- name: Dummy KV DB | |
run: | | |
ls | |
cd code/kv_bash | |
source kv.sh | |
kset foo bar | |
kget foo | |
kget bar | |
- name: Build Images | |
run: | | |
cd code | |
chmod +x *.sh | |
./start.sh | |
./stop.sh |