-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (33 loc) · 800 Bytes
/
client.yml
File metadata and controls
33 lines (33 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: client
env:
CI: true
FORCE_COLOR: 1
on:
push:
branches: [main]
paths:
- 'packages/client/**'
- .github/workflows/client.yml
- pnpm-lock.yaml
pull_request:
paths:
- 'packages/client/**'
- .github/workflows/client.yml
- pnpm-lock.yaml
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: pnpm run build
- run: pnpm -r --filter @fission-codes/client run lint
- run: pnpm -r --filter @fission-codes/client run test
- run: pnpm -r --filter @fission-codes/client exec depcheck