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
|
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@v3
- 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@v3
- 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: [20, 22]
ts: [5.0.4, 5.1.3, 5.2.2, 5.3.3, 5.4.2, 5.5.3, 5.6.2, 5.7.2, 5.8.2, 5.9.2, next]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node
uses: actions/setup-node@v3
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: test
run: yarn execution-tests
execution_test_windows:
name: Execution Tests Windows
strategy:
matrix:
node: [20, 22]
ts: [5.0.4, 5.1.3, 5.2.2, 5.3.3, 5.4.2, 5.5.3, 5.6.2, 5.7.2, 5.8.2, 5.9.2, next]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: install node
uses: actions/setup-node@v3
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: test
run: yarn execution-tests
working-directory: C:\source\ts-loader
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install
run: yarn install
- name: lint
run: yarn lint
|