Skip to content

Commit

Permalink
refactor: update GitHub Actions workflow for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
barrenechea committed Oct 7, 2024
1 parent 56f212c commit 3e230ea
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@ concurrency:
cancel-in-progress: true

jobs:
# lint:
# name: Linting rules
# runs-on: ubuntu-latest
lint:
name: Linting rules
runs-on: ubuntu-latest

# steps:
# - name: Checkout
# uses: actions/checkout@v4
steps:
- name: Checkout
uses: actions/checkout@v4

# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version-file: .nvmrc
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

# - name: Install dependencies
# run: npm ci
- name: Install dependencies
run: npm ci

# - name: Linting rules
# run: npm run lint
- name: Linting rules
run: npm run lint

build:
name: Build
Expand Down

0 comments on commit 3e230ea

Please sign in to comment.