-
Notifications
You must be signed in to change notification settings - Fork 38
119 lines (99 loc) · 2.75 KB
/
pr-check.yml
File metadata and controls
119 lines (99 loc) · 2.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: PR Check
on:
pull_request:
types: [synchronize, opened, reopened, edited]
branches:
- master
- develop
env:
HUSKY: 0
NODE_VERSION: 21
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Lint
run: npm run lint
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Format
run: npm run format:check
build_extension:
name: Build Extension
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Build Extension
run: npm run vsce:package
- name: Upload Extension
uses: actions/upload-artifact@v4
with:
name: languague-renpy-package
path: "**/*.vsix"
if-no-files-found: error
retention-days: 7
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Run tests with coverage
id: run_tests_linux
run: xvfb-run -a npm run test:coverage
if: runner.os == 'Linux' && success()
- name: Run tests with coverage
id: run_tests_non_linux
run: npm run test:coverage
if: runner.os != 'Linux' && success()
- name: Process test output for Codecov
if: success()
uses: codecov/basic-test-results@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: "vscode-language-renpy-test-results.xml"
- name: Test Report
uses: dorny/test-reporter@v2
if: ${{ !cancelled() }}
with:
name: vscode-test
path: "vscode-language-renpy-test-results.json"
reporter: mocha-json
- name: Upload JSON Test Results
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-results.json
path: vscode-language-renpy-test-results.json
retention-days: 7
- name: Upload JUnit Test Results
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-results.xml
path: vscode-language-renpy-test-results.xml
retention-days: 7