Skip to content

Commit

Permalink
chore: add setup for task execution
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack committed May 21, 2024
1 parent 329c583 commit a59dbb0
Show file tree
Hide file tree
Showing 7 changed files with 1,718 additions and 114 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
run: npm run build --ignore 'examples/**'
- name: Run arethetypeswrong
working-directory: ${{ matrix.workspace }}
run: npx @arethetypeswrong/cli --pack .
Expand All @@ -71,6 +71,6 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
run: npm run build --ignore 'examples/**'
- name: Type check
run: npm run type-check
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ blob-report

# TypeScript
*.tsbuildinfo

# Turbo
.turbo
2 changes: 1 addition & 1 deletion examples/nextjs/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {doctocat} from '@primer/doctocat-nextjs'
import {doctocat} from '@primer/doctocat-nextjs/config'

const withDoctocat = doctocat()

Expand Down
Loading

0 comments on commit a59dbb0

Please sign in to comment.