-
-
Notifications
You must be signed in to change notification settings - Fork 329
42 lines (39 loc) · 982 Bytes
/
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
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
- name: yarn
run: yarn --frozen-lockfile
- name: lint
run: yarn lint
tsc:
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: tsc
run: yarn 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