From 98b9468f1a52afc509193cefeca2721ebeceef92 Mon Sep 17 00:00:00 2001 From: electrovir Date: Thu, 15 Aug 2024 18:02:21 +0000 Subject: [PATCH] [dev] remove tests workflow because they don't work remotely anyway --- .github/workflows/tests.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index ef0f972..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: tests - -on: - push: - branches: - - '**' - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v4.1.7 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4.0.3 - with: - node-version-file: '.nvmrc' - # handle NPM / Node.js repeatedly bricking their npm setup on Windows - - if: runner.os == 'Windows' - shell: bash - run: | - npm install npm - - name: run test - shell: bash - run: | - npm ci - npm run test:all