-
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (29 loc) · 756 Bytes
/
Copy pathci.yml
File metadata and controls
29 lines (29 loc) · 756 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
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
jobs:
engine:
name: Matching engine + API (fmt, lint, typecheck, tests)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6.0.2
- uses: denoland/setup-deno@v2.0.4
with:
deno-version: v2.x
- name: Format check (engine)
run: deno task fmt:check
- name: Lint + typecheck (engine, legacy domain, API)
run: deno task check
- name: Engine unit tests
run: deno task test