From ba6817751ce7dd971b256241f77f1ee8302663c4 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Wed, 3 Jul 2024 10:26:55 +0300 Subject: [PATCH] add build workflow --- .github/workflows/build.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 000000000..7e2ee59ef --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,34 @@ +name: Build + +on: + push: + branches: + - main + pull_request: + branches: + - "*" + types: + - synchronize + - opened + - reopened + - ready_for_review + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "16" + registry-url: "https://registry.npmjs.org" + + - name: Install Dependencies + run: yarn install + + - name: Build + run: yarn build