chore: add missing install and build steps

This commit is contained in:
Karol Sójko
2023-10-02 14:22:57 +02:00
parent 44c97e26b2
commit 852b656927
2 changed files with 8 additions and 0 deletions

View File

@@ -48,6 +48,10 @@ jobs:
if: "${{ contains(github.event.head_commit.message, 'chore(release): publish') == false }}"
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build:snjs
- name: Login to Docker Hub
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
uses: docker/login-action@v2

View File

@@ -37,6 +37,10 @@ jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build:snjs
- name: Login to Docker Hub
uses: docker/login-action@v2
with: