Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-carvalho authored Jan 30, 2025
1 parent ba91149 commit 076a277
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build Workflow

on:
workflow_call:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3

- name: Install Dependencies
run: yarn install

- name: Build Project
run: yarn build

0 comments on commit 076a277

Please sign in to comment.