Skip to content

Commit

Permalink
Fix paths for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tupui committed Aug 4, 2024
1 parent db0f5f5 commit 80b9c3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
cache-dependency-path: "website/package-lock.json"

- name: Install App Dependencies
run: cd website && yarn --prefer-offline
run: cd website && npm install

- name: Check MDX
run: yarn check:mdx
run: cd website && npm run check:mdx

- name: Build app
run: yarn build
run: cd website && npm run build

0 comments on commit 80b9c3f

Please sign in to comment.