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