From 0084e5406b473add492b7994dc6123e4ecbc213a Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Mon, 22 Apr 2024 10:36:22 -0700 Subject: [PATCH] rm CI b/c its broken --- .github/workflows/nodejs.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 501588a..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Node CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-20.04 - timeout-minutes: 5 - - strategy: - matrix: - node-version: [21.x] - - steps: - - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - name: npm install, build - run: | - npm install - npm run build --if-present - npm run lint - env: - CI: true - - name: Run tape tests - run: | - npm run build-tests - xvfb-run --server-args="-screen 0 1920x1080x24" npm run test-tape-run