Skip to content

Commit

Permalink
Merge main into sweep/fix-gh-actions-build-failure
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 2, 2024
2 parents 5b9430b + f70907b commit a3541da
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/main-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,23 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
node-version: 'latest'

- name: Install dependencies
run: npm install

- name: Build documentation
run: npm run build

- name: Run tests
run: npm test # Replace with your test script if different

- name: Lint check
run: npm run lint
continue-on-error: true

- name: Type checking
run: npm run typecheck
continue-on-error: true

0 comments on commit a3541da

Please sign in to comment.