Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,29 @@ jobs:
steps:
# Checkout the Repo
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10

# Install Node 18
- name: Setup Node
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
with:
node-version: 18
cache: pnpm

- name: Install Dependencies
run: npm ci
run: pnpm i

- name: Lint Files
run: npm run lint
run: pnpm lint

- name: Verify Build
run: npm run build
run: pnpm build

- name: Run Tests
run: npm test
run: pnpm test

python-tests:
name: "Python CI"
Expand Down
Loading
Loading