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