-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (30 loc) · 764 Bytes
/
ci.yml
File metadata and controls
39 lines (30 loc) · 764 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
34
35
36
37
38
39
name: CI
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node environment
uses: actions/setup-node@v6
with:
node-version: '24.15.0'
cache: 'yarn'
cache-dependency-path: |
.yarn
yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn nx run-many --target=lint
- name: Type check
run: yarn nx run-many --target=type-check
- name: Test
run: yarn nx run-many --target=test
- name: Build
run: yarn nx run-many --target=build