Skip to content

Commit

Permalink
fix linting and type check
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoffa committed Aug 9, 2024
1 parent f5ae90f commit 1ac56c4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: '18.18.2'
- run: npm install
env:
SKIP_PREPARE: true
- name: Run Linting
run: npm run lint

Expand All @@ -69,5 +76,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: '18.18.2'
- run: npm install
env:
SKIP_PREPARE: true
- name: Run Type Checking
run: npm run check

0 comments on commit 1ac56c4

Please sign in to comment.