-
-
Notifications
You must be signed in to change notification settings - Fork 438
132 lines (104 loc) · 3.06 KB
/
Copy pathpush.yml
File metadata and controls
132 lines (104 loc) · 3.06 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
120
121
122
123
124
125
126
127
128
129
130
131
132
name: build and test
on: [push, pull_request, workflow_dispatch]
jobs:
comparison_test_ubuntu:
name: Comparison Tests Ubuntu
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v6
- name: install
run: yarn install
- name: build
run: yarn build
- name: test
run: sudo yarn comparison-tests
comparison_test_windows:
name: Comparison Tests Windows
runs-on: windows-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v6
- name: copy files
shell: pwsh
run: |
New-Item C:\source\ts-loader -ItemType Directory
Copy-Item .\* C:\source\ts-loader -Recurse -Force
- name: install
run: yarn install
working-directory: C:\source\ts-loader
- name: build
run: yarn build
working-directory: C:\source\ts-loader
- name: test
run: yarn comparison-tests
working-directory: C:\source\ts-loader
execution_test_ubuntu:
name: Execution Tests Ubuntu
strategy:
matrix:
node: [26, 24, 22]
ts: [5.6.2, 5.7.2, 5.8.2, 5.9.2, 6.0.2] # next excluded for now
webpack: [4, 5]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: install
run: yarn install
- name: build
run: yarn build
- name: install typescript
run: yarn add typescript@${{ matrix.ts }}
- name: install webpack 4
if: matrix.webpack == 4
run: yarn add webpack@^4.47.0 karma-webpack@^4.0.2
- name: test
run: yarn execution-tests
execution_test_windows:
name: Execution Tests Windows
strategy:
matrix:
node: [26, 24, 22]
ts: [5.6.2, 5.7.2, 5.8.2, 5.9.2, 6.0.2] # next excluded for now
webpack: [4, 5]
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: copy files
shell: pwsh
run: |
New-Item C:\source\ts-loader -ItemType Directory
Copy-Item .\* C:\source\ts-loader -Recurse -Force
- name: install
run: yarn install
working-directory: C:\source\ts-loader
- name: build
run: yarn build
working-directory: C:\source\ts-loader
- name: install typescript
run: yarn add typescript@${{ matrix.ts }}
working-directory: C:\source\ts-loader
- name: install webpack 4
if: matrix.webpack == 4
run: yarn add webpack@^4.47.0 karma-webpack@^4.0.2
working-directory: C:\source\ts-loader
- name: test
run: yarn execution-tests
working-directory: C:\source\ts-loader
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: install
run: yarn install
- name: lint
run: yarn lint