From 5f204b600909b33da7229b1bbb589ff464a506f8 Mon Sep 17 00:00:00 2001 From: "David L. Day" Date: Mon, 26 Feb 2024 08:15:23 -0500 Subject: [PATCH] ci: remove unneeded ci on push --- .github/workflows/nodejs-ci-push.yml | 31 ---------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/nodejs-ci-push.yml diff --git a/.github/workflows/nodejs-ci-push.yml b/.github/workflows/nodejs-ci-push.yml deleted file mode 100644 index 105ec695..00000000 --- a/.github/workflows/nodejs-ci-push.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Node.js CI - Push - -on: push - -concurrency: - group: ci-${{ github.ref }} - cancel-in-progress: true - -jobs: - ubuntu-build: - runs-on: ubuntu-latest - name: Build on Ubuntu - env: - DISPLAY: ":99.0" - CI: true - steps: - - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v4.0.2 - with: - node-version: lts/* - - run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - name: Start Xvfb - - run: npm install -g typescript vsce json - - run: npm ci - - run: npm run vscode:prepublish - - run: npm run test-compile - - run: npm test - name: Test - - run: npm run lint - name: ESLint