From 391e57162379be3bae9b189efe2138f8c85a89a2 Mon Sep 17 00:00:00 2001 From: Matthew Scott Date: Sun, 23 Feb 2025 14:23:56 -0600 Subject: [PATCH] Disable javscript tests github action --- .github/workflows/javascript-tests.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/javascript-tests.yml diff --git a/.github/workflows/javascript-tests.yml b/.github/workflows/javascript-tests.yml deleted file mode 100644 index 7779b9e0..00000000 --- a/.github/workflows/javascript-tests.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: javascript-tests -on: - - push -jobs: - test: - runs-on: ubuntu-20.04 - strategy: - matrix: - node-version: - - "16.x" - - "17.x" - - steps: - - uses: actions/checkout@v2 - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - - run: npm install - - - run: npm run jest