Skip to content

Commit 5777b16

Browse files
committed
fix-node25
1 parent 4fa4945 commit 5777b16

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.action.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,17 @@ jobs:
4040
- null
4141
- /tmp/pkgx
4242
include:
43-
- os: ubuntu-latest
44-
container: debian:buster-slim
45-
- os: windows-latest
43+
- os: ubuntu-latest
44+
container: debian:buster-slim
45+
- os: windows-latest
4646
container: ${{ matrix.container }}
4747
steps:
4848
- uses: actions/checkout@v6
4949

50+
- name: install libatomic (required by Node 25+ on older distros)
51+
if: ${{ matrix.container == "debian:buster-slim" }}
52+
run: apt-get update -qq && apt-get install -y libatomic1
53+
5054
- uses: actions/setup-node@v6
5155
with:
5256
node-version: latest
@@ -90,7 +94,7 @@ jobs:
9094
- uses: ./
9195
- run: npm run dist
9296
- run: rm /usr/local/bin/pkgx
93-
- run: '! pkgx --version'
97+
- run: "! pkgx --version"
9498
- run: git clean -xfd
9599
- uses: ./
96100
- run: pkgx --version

0 commit comments

Comments
 (0)