-
Notifications
You must be signed in to change notification settings - Fork 9
58 lines (47 loc) 路 1.2 KB
/
Copy pathmain.yml
File metadata and controls
58 lines (47 loc) 路 1.2 KB
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
name: quality checks
on:
pull_request:
branches:
- main
push:
branches:
- main
paths:
- src/**.ts
- package.json
- tsconfig.json
- .github/workflows/**.yml
permissions:
contents: read
pull-requests: write
actions: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'yarn'
- name: install
run: yarn
- name: build
run: yarn run build
- name: test
run: yarn run test:ci
- name: Coverage report
if: github.event_name == 'pull_request'
uses: xseman/coverage@v0.2.0
with:
coverage-artifact-paths: |
node:coverage/lcov.info
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install
run: yarn
- name: lint
run: yarn