diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b9f98dd..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Default Build & Test - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - if: false - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.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: Install Dependencies - run: npm ci - - name: Run tests - run: npm run lint && npm run test