Skip to content

migration dev

migration dev #19

Workflow file for this run

name: User Workflow - Build
on:
push:
branches:
- main
jobs:
user-build:
runs-on: ubuntu-latest
steps:
- name: Checkout User
uses: actions/checkout@v3
- name: Navigate to User directory
run: cd packages/services/user
shell: bash
- name: Setup Node v20
uses: actions/setup-node@v3
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Success Build
run: echo "Success Build"
- name: Fail Build
if: ${{ failure() }}
run: echo "Fail Build"