-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.19 KB
/
Copy pathprcheck.yml
File metadata and controls
48 lines (38 loc) · 1.19 KB
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
45
46
47
48
name: PR Check
on:
pull_request:
branches:
- master
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
TURBO_API: ${{ secrets.TURBO_API }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
concurrency:
group: prcheck-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 2
- uses: ./.github/actions/setup-build
- name: lint
run: bun run lint
- name: format:check
run: bun run format:check
- name: Typecheck and build affected packages
run: bun x turbo run typecheck build --affected --output-logs=new-only
env:
VITE_PROVIDER_DB_URL: ${{ secrets.CDN_PROVIDER_DB_URL }}
ARGOS_TARGET_OS: linux
ARGOS_TARGET_ARCH: x64
- name: Daemon unit tests
run: bun x turbo run test --filter=@argos/daemon --output-logs=new-only
- name: Build standalone Argos Server
run: bun run build:daemon
- name: Standalone remote-machine lifecycle smoke
run: bun run e2e:remote-machine