-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (43 loc) · 1.02 KB
/
Copy pathci.yaml
File metadata and controls
48 lines (43 loc) · 1.02 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: Integrate
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: holepunchto/actions/node-base@v1
- run: npm run lint
build:
name: ${{ matrix.host }}
strategy:
matrix:
include:
- os: ubuntu-latest
host: linux-x64
- os: ubuntu-24.04-arm
host: linux-arm64
- os: macos-latest
host: darwin-arm64
- os: macos-15-intel
host: darwin-x64
- os: windows-latest
host: win32-x64
- os: windows-11-arm
host: win32-arm64
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Setup repo
uses: holepunchto/actions/.github/steps/setup-repo@v1
- name: Install w/ dev deps
run: npm install
- name: Build Local Runtime
run: npm run make
- name: Install Bare
run: npm i -g bare-runtime
- name: Test
run: npm test