From 82df3cb316580d128ac163699f5629e7c8839ac2 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Wed, 3 Jan 2024 09:27:24 +0100 Subject: [PATCH] Delete duplicate build CI step --- .github/workflows/build.yml | 44 ----------------------------- .github/workflows/documentation.yml | 2 +- 2 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 8a314f81..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Build - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - client: - name: Client (${{ matrix.os }}) - runs-on: ${{ matrix.os }} - - strategy: - matrix: - node-version: - - 20.x - os: - - ubuntu-20.04 - - windows-2019 - include: - - os: ubuntu-20.04 - script: build-release-linux - - os: windows-2019 - script: build-release - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies - working-directory: client - run: npm ci - - - name: Build - working-directory: client - run: npm run ${{ matrix.script }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 2a1a7568..40b18322 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -23,7 +23,7 @@ jobs: uses: actions/setup-node@v2 - name: Install dependencies - run: npm ci + run: npm install working-directory: ./client - name: Create the docs directory locally in CI