From 781617e78b91690bb3ca74c700ce54e1ead7ec5f Mon Sep 17 00:00:00 2001 From: Synthetics Date: Wed, 8 Nov 2023 10:37:24 +0100 Subject: [PATCH] Add new yarn pipeline --- kread-yarn-step-cicd.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 kread-yarn-step-cicd.yml diff --git a/kread-yarn-step-cicd.yml b/kread-yarn-step-cicd.yml new file mode 100644 index 000000000..7bd6bbf88 --- /dev/null +++ b/kread-yarn-step-cicd.yml @@ -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