Skip to content

Commit d2a2b76

Browse files
fix release test
1 parent a1761bd commit d2a2b76

File tree

3 files changed

+5
-35
lines changed

3 files changed

+5
-35
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
matrix:
1414
os: [macos-11, macos-latest, windows-2019]
1515
runs-on: ${{ matrix.os }}
16+
name: ${{ matrox.os }}
1617
steps:
1718
- uses: actions/checkout@v4
1819

@@ -41,6 +42,7 @@ jobs:
4142
strategy:
4243
matrix:
4344
linux_arch: [s390x, arm64, amd64]
45+
name: ${{ matrox.linux_arch }}
4446
steps:
4547
- uses: actions/checkout@v4
4648

.github/workflows/test.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

test/release.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ describe(`Release ${packFile}`, function () {
4545
});
4646

4747
afterEach(() => {
48-
fs.unlinkSync(packFile);
48+
if (process.arch === 'x64') {
49+
fs.unlinkSync(packFile);
50+
}
4951
});
5052

5153
for (const requiredFile of REQUIRED_FILES) {

0 commit comments

Comments
 (0)