Skip to content

Commit

Permalink
Fix: Fix CI on Windows Runner [1.23.X] (#4633)
Browse files Browse the repository at this point in the history
  • Loading branch information
chakflying authored Mar 31, 2024
1 parent b385e81 commit c130180
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/auto-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest, ARM64]
node: [ 14, 20 ]
node: [ 16, 20.5 ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -33,8 +33,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install npm@9 -g
- run: npm install
- run: npm ci
- run: npm run build
- run: npm test
env:
Expand All @@ -50,7 +49,7 @@ jobs:
strategy:
matrix:
os: [ ARMv7 ]
node: [ 14, 20 ]
node: [ 16, 20.5 ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -61,7 +60,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install npm@9 -g
- run: npm ci --production

check-linters:
Expand All @@ -71,11 +69,11 @@ jobs:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v4

- name: Use Node.js 14
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 14
- run: npm install
node-version: 20.5
- run: npm ci
- run: npm run lint:prod

e2e-tests:
Expand All @@ -85,11 +83,11 @@ jobs:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v4

- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v4
with:
node-version: 14
- run: npm install
node-version: 16
- run: npm ci
- run: npm run build
- run: npm run cy:test

Expand All @@ -100,10 +98,10 @@ jobs:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v4

- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v4
with:
node-version: 14
- run: npm install
node-version: 16
- run: npm ci
- run: npm run build
- run: npm run cy:run:unit

0 comments on commit c130180

Please sign in to comment.