-
-
Notifications
You must be signed in to change notification settings - Fork 324
48 lines (45 loc) · 1.13 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: Continuous Integration
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: lint
run: pnpm lint
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: tsc
run: pnpm tsc
# test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - uses: actions/setup-node@master
# with:
# node-version: 20
# - name: yarn
# run: yarn --frozen-lockfile
# - name: test
# run: |
# export DISPLAY=:99
# Xvfb -ac :99 -screen 0 2080x1024x24 >/dev/null 2>&1 &
# yarn run test