From 4f164a2f6ee5c23512a8e6643b90a74891ec52c4 Mon Sep 17 00:00:00 2001 From: Richard Zampieri Date: Mon, 9 Oct 2023 22:44:13 -0700 Subject: [PATCH] fix: adjust build pipeline --- .github/workflows/build.yaml | 83 ++++++++++++++++++------------------ 1 file changed, 41 insertions(+), 42 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d9d2c73..3d20e7a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,42 +1,41 @@ -# name: Build and Publish to NPM - -# on: - # push: - # branches: - # - main - # pull_request: - # # The branches below must be a subset of the branches above - # branches: [ "main" ] - # pull_request_target: - # types: [opened, synchronize, reopened] - -# jobs: - # build: - # runs-on: ubuntu-latest - - # steps: - # - name: Checkout code - # uses: actions/checkout@v2 - - # - name: Use Node.js - # uses: actions/setup-node@v2 - # with: - # node-version: '18.11.0' - - # - name: Install Dependencies - # run: npm install - - # - name: Build - # run: npm run build:linux - - #- name: Unit Tests - # working-directory: packages/core - # run: npm test - # env: - # CI: true - - # - name: Set up .npmrc - # run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - # - name: Install dependencies - # run: npm ci - \ No newline at end of file +name: Build + +on: + push: + branches: + - main + pull_request: + # The branches below must be a subset of the branches above + branches: ["main"] + pull_request_target: + types: [opened, synchronize, reopened] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Use Node.js + uses: actions/setup-node@v2 + with: + node-version: "18.11.0" + + - name: Install Dependencies + run: npm install + + - name: Build + run: npm run build + + #- name: Unit Tests + # working-directory: . + # run: npm test + # env: + # CI: true + + #- name: Set up .npmrc + # run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc + #- name: Install dependencies + # run: npm ci