-
Notifications
You must be signed in to change notification settings - Fork 575
48 lines (43 loc) · 1.06 KB
/
ci.yml
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: Node.js CI
# on: push
# # defaults:
# # run:
# # working-directory: packages/umbreld
# # jobs:
# # build:
# # runs-on: ubuntu-latest
# # strategy:
# # fail-fast: false
# # matrix:
# # task:
# # - format:check
# # - lint
# # - typecheck
# # - test:unit -- --coverage
# # - test:integration -- --coverage
# # steps:
# # - uses: actions/checkout@v3
# # - uses: actions/setup-node@v3
# # with:
# # node-version: 18
# # - run: npm clean-install
# # - run: npm run ${{ matrix.task }}
# defaults:
# run:
# working-directory: packages/os
# jobs:
# build-os:
# runs-on: release-runner-64
# strategy:
# fail-fast: false
# matrix:
# task:
# - build:amd64
# - build:arm64
# steps:
# - uses: actions/checkout@v3
# - uses: docker/setup-buildx-action@v2
# - uses: actions/setup-node@v3
# with:
# node-version: 18
# - run: npm run ${{ matrix.task }}