Skip to content

Commit

Permalink
feat: Add CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
CCristi committed Jun 13, 2024
1 parent 2c4d2d9 commit 57ce204
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/explorerkit-server-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ExplorerKit Server CI

on:
pull_request:
paths:
- "packages/explorerkit-server/**"

jobs:
run-test-cases:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup pnpm package manager
uses: pnpm/action-setup@v2
with:
version: 8.6.10
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: Install Node Modules
run: pnpm install
- name: Build workspace
run: pnpm build
- name: Run ExplorerKit Server Lint
run: pnpm lint
working-directory: ./packages/explorerkit-server
- name: Run ExplorerKit Server Tests
run: pnpm test
working-directory: ./packages/explorerkit-server

0 comments on commit 57ce204

Please sign in to comment.