Skip to content

Commit

Permalink
ci: temporarily remove lint step
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Jan 13, 2025
1 parent 53d1790 commit 81ca05d
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -117,9 +117,9 @@ jobs:

build-publish:
runs-on: ubuntu-latest
needs:
- lint
# - test
# needs:
# - lint
# - test
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 81ca05d

Please sign in to comment.