error.NotFound #59
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: 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" |