From 129ba118ce95c47f40f5ad009f99ac6e12d31b46 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Mon, 31 Jan 2022 12:51:07 -0700 Subject: [PATCH] chore: remove github workflows [skip ci] --- .github/workflows/ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index f634b68e..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Node.js CI - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: windows-latest - strategy: - matrix: - node-version: [16.x, 14.x, 12.x] - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: yarn install - env: - CI: true - - run: yarn test - env: - CI: true