Skip to content

Bump dotenv from 16.3.1 to 16.4.5 #272

Bump dotenv from 16.3.1 to 16.4.5

Bump dotenv from 16.3.1 to 16.4.5 #272

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Build Node App
run: |
npm ci
npm run build --if-present
env:
CI: true
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)