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