Skip to content

Commit

Permalink
Fix lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Oct 28, 2024
1 parent 241b4e0 commit ff39591
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 'lts/*'
cache: 'npm'
- run: npm ci
- run: npm run lint

0 comments on commit ff39591

Please sign in to comment.