From a2421bee3923ad314c2c25af4346bc336fd2bce1 Mon Sep 17 00:00:00 2001 From: Miao ZhiCheng Date: Thu, 24 Aug 2023 16:31:27 +0300 Subject: [PATCH] Delete ci.yml --- .husky/.github/workflows/ci.yml | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .husky/.github/workflows/ci.yml diff --git a/.husky/.github/workflows/ci.yml b/.husky/.github/workflows/ci.yml deleted file mode 100644 index 8ac2e94..0000000 --- a/.husky/.github/workflows/ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Dev CI/CD - -on: - push: - branches: - - "*" - -jobs: - build: - name: Build and test of feature branch - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [14.x] - - steps: - - uses: actions/checkout@v2 - - - name: Show contexts - run: | - echo github.event_name: ${{ github.event_name }} - echo github.sha: ${{ github.sha }} - echo github.repository: ${{ github.repository }} - echo github.ref: ${{ github.ref }} - echo github.head_ref: ${{ github.head_ref }} - echo github.base_ref: ${{ github.base_ref }} - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: Install, lint & build - run: | - yarn install - - - name: run node unit tests - run: | - yarn test