From 81ca05d732d4438b1f1368e2ed56efc909450a2e Mon Sep 17 00:00:00 2001 From: Rafael Cardenas Date: Mon, 13 Jan 2025 17:12:48 -0600 Subject: [PATCH] ci: temporarily remove lint step --- .github/workflows/ci.yml | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca3a879..ae846a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,41 +16,41 @@ on: workflow_dispatch: jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 + # lint: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 - - name: Use Node.js - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' + # - name: Use Node.js + # uses: actions/setup-node@v4 + # with: + # node-version-file: '.nvmrc' - - name: Cache node modules - uses: actions/cache@v4 - env: - cache-name: cache-node-modules - with: - path: | - ~/.npm - **/node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- + # - name: Cache node modules + # uses: actions/cache@v4 + # env: + # cache-name: cache-node-modules + # with: + # path: | + # ~/.npm + # **/node_modules + # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.os }}-build-${{ env.cache-name }}- + # ${{ runner.os }}-build- + # ${{ runner.os }}- - - name: Install deps - run: npm ci --audit=false + # - name: Install deps + # run: npm ci --audit=false - - name: Lint ESLint - run: npm run lint:eslint + # - name: Lint ESLint + # run: npm run lint:eslint - - name: Lint Prettier - run: npm run lint:prettier + # - name: Lint Prettier + # run: npm run lint:prettier - - name: Lint Unused Exports - run: npm run lint:unused-exports + # - name: Lint Unused Exports + # run: npm run lint:unused-exports # test: # strategy: @@ -117,9 +117,9 @@ jobs: build-publish: runs-on: ubuntu-latest - needs: - - lint - # - test + # needs: + # - lint + # - test steps: - uses: actions/checkout@v4 with: