-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (57 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
49
50
51
52
53
54
55
56
57
58
59
name: Mock3 CI
on :
push:
branches:
- master
tags:
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
types:
- opened
- reopened
- synchronize # new commit
- ready_for_review
jobs:
tslint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run TSLint
run: |
yarn
yarn lint
tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run Tests
run: |
yarn
yarn test
release:
if: github.event_name == 'push'
needs:
- tslint
- tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12.x
- name: Build
run: |
yarn --prod
yarn build
ls -al dist
# TODO: create a new tag
# TODO: deploy to npm