-
Notifications
You must be signed in to change notification settings - Fork 188
56 lines (45 loc) · 1.24 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
49
50
51
52
53
54
55
56
name: 🛠
on:
push:
# branches: [main]
pull_request: # run on all PRs, not just PRs to a particular branch
jobs:
# basics:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node: [ 'latest', 'lts/*', 'lts/-1' ]
# name: basics (node ${{ matrix.node }})
# steps:
# - name: git clone
# uses: actions/checkout@v3
# - name: Setup node
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node }}
# cache: 'yarn'
# - run: yarn --frozen-lockfile --network-timeout 1000000
# - run: yarn build
# - run: yarn test-formatting
# - run: yarn type-check
# # Run tests that require headful Chrome.
# - run: sudo apt-get install xvfb
# - name: yarn test
# run: xvfb-run --auto-servernum yarn test --reporter=spec
unit:
strategy:
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
name: unit_${{ matrix.os }}
steps:
- name: git clone
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'yarn'
- run: yarn --frozen-lockfile --network-timeout 1000000
- run: yarn build
- run: yarn test --reporter=spec