From d9a8dd00be0e8651ef867edc13d4316bc46981a2 Mon Sep 17 00:00:00 2001 From: exidy80 Date: Tue, 27 May 2025 07:47:56 -0400 Subject: [PATCH] remove CI on merge for now --- .eslintignore | 4 ++ .github/workflows/ci.yml | 82 ++++++++++++++++++++-------------------- 2 files changed, 45 insertions(+), 41 deletions(-) diff --git a/.eslintignore b/.eslintignore index d474a40bd..76bda8068 100644 --- a/.eslintignore +++ b/.eslintignore @@ -23,3 +23,7 @@ /package.json.ember-try /package-lock.json.ember-try /yarn.lock.ember-try + +# tests +/test/ +/tests/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3b841d5f..894d99d46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,47 +1,47 @@ -name: CI +# name: CI -on: - push: - branches: - - main - - master - pull_request: {} +# on: +# push: +# branches: +# - main +# - master +# pull_request: {} -concurrency: - group: ci-${{ github.head_ref || github.ref }} - cancel-in-progress: true +# concurrency: +# group: ci-${{ github.head_ref || github.ref }} +# cancel-in-progress: true -jobs: - lint: - name: "Lint" - runs-on: ubuntu-latest - timeout-minutes: 10 +# jobs: +# lint: +# name: "Lint" +# runs-on: ubuntu-latest +# timeout-minutes: 10 - steps: - - uses: actions/checkout@v3 - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: 12.x - cache: npm - - name: Install Dependencies - run: npm ci - - name: Lint - run: npm run lint +# steps: +# - uses: actions/checkout@v3 +# - name: Install Node +# uses: actions/setup-node@v3 +# with: +# node-version: 12.x +# cache: npm +# - name: Install Dependencies +# run: npm ci +# - name: Lint +# run: npm run lint - test: - name: "Test" - runs-on: ubuntu-latest - timeout-minutes: 10 +# test: +# name: "Test" +# runs-on: ubuntu-latest +# timeout-minutes: 10 - steps: - - uses: actions/checkout@v3 - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: 12.x - cache: npm - - name: Install Dependencies - run: npm ci - - name: Run Tests - run: npm test +# steps: +# - uses: actions/checkout@v3 +# - name: Install Node +# uses: actions/setup-node@v3 +# with: +# node-version: 12.x +# cache: npm +# - name: Install Dependencies +# run: npm ci +# - name: Run Tests +# run: npm test