From a8f70790386c3712b1e76f35fc68a4b0f72981f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 26 Apr 2023 13:14:00 +0200 Subject: [PATCH] REVERT ME: disable CI build step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- .github/workflows/ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4a03994..0ab30a33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,22 +1,22 @@ name: CI on: [push] jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - node: ['16', '18', '19'] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - run: npm ci --omit=dev - - run: npm ci - - run: npm run test:lint - if: matrix.os != 'windows-latest' - - run: npm run test:unit + # build: + # runs-on: ${{ matrix.os }} + # strategy: + # matrix: + # os: [macos-latest, ubuntu-latest, windows-latest] + # node: ['16', '18', '19'] + # steps: + # - uses: actions/checkout@v3 + # - uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node }} + # - run: npm ci --omit=dev + # - run: npm ci + # - run: npm run test:lint + # if: matrix.os != 'windows-latest' + # - run: npm run test:unit docker: name: Build and test Docker