Installs dependencies so Lerna can be pinned to what is in package (#191)

This commit is contained in:
Chris Anderson 2023-06-17 16:29:13 -05:00 committed by GitHub
parent f2b95ab85a
commit 9d17439447
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,22 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Node 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Cache NPM
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
- name: Build the Docker Image
run: |
npm run docker:build:push --tag=$(echo ${GITHUB_REF_NAME:1})