From 6c3c4b12f21fb92a58adfedda3ee451f8be0ed10 Mon Sep 17 00:00:00 2001 From: Juan Di Toro Date: Wed, 25 Oct 2023 22:15:09 +0200 Subject: [PATCH] chore: use the old build step --- .github/workflows/ci.yml | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29a231a..06631f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,19 +1,13 @@ name: Build/Publish on: - push: + push: + branches: + - master + - develop + - develop-* jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Use Node.js - uses: actions/setup-node@v3 - with: - node-version: 18.x - cache: 'npm' - - run: npm ci - - run: npm run build --if-present - env: - NODE_OPTIONS: "--max_old_space_size=4096" + main: + uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master + secrets: inherit