-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 844 Bytes
/
ci.yml
File metadata and controls
32 lines (29 loc) · 844 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: .node-version
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm -r run build
- name: Typecheck
run: pnpm -r run typecheck
- name: Test
run: pnpm --filter smapped-traces --filter "@smapped-traces/sqlite" run test