Skip to content

Commit

Permalink
Add new yarn pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Synthetics authored and Synthetics committed Nov 8, 2023
1 parent a2a6bf7 commit 781617e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions kread-yarn-step-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Yarn Build PR Check

on:
push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install Yarn
run: npm install -g yarn

- name: Install project dependencies
run: yarn install

- name: Yarn Build
run: cd frontend && yarn build

0 comments on commit 781617e

Please sign in to comment.