-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (37 loc) · 1.07 KB
/
build.yml
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
34
35
36
37
38
39
40
41
42
43
44
name: Build
on:
pull_request:
push:
jobs:
test:
timeout-minutes: 15
strategy:
matrix:
node: ['18.18.x']
pkg: ['sdk']
runs-on:
labels: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: ${{ matrix.node }}
- name: Install dependencies for ${{ matrix.pkg }}
run: |
pnpm install --frozen-lockfile --filter='...${{ matrix.pkg }}'
- name: Lint (if present) ${{ matrix.pkg }}
run: pnpm --if-present --filter='${{ matrix.pkg }}' lint
- name: Test ${{ matrix.pkg }}
run: |
pnpm --filter='${{ matrix.pkg }}' test
- name: E2E tests (if present) for ${{ matrix.pkg }}
env:
TEST_MERMAIDCHART_API_TOKEN: ${{ secrets.TEST_MERMAIDCHART_API_TOKEN }}
run: |
pnpm --if-present --filter='${{ matrix.pkg }}' test:e2e