We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa4945 commit f921281Copy full SHA for f921281
1 file changed
.github/workflows/ci.action.yml
@@ -40,13 +40,17 @@ jobs:
40
- null
41
- /tmp/pkgx
42
include:
43
- - os: ubuntu-latest
44
- container: debian:buster-slim
45
- - os: windows-latest
+ - os: ubuntu-latest
+ container: debian:buster-slim
+ - os: windows-latest
46
container: ${{ matrix.container }}
47
steps:
48
- uses: actions/checkout@v6
49
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
+
54
- uses: actions/setup-node@v6
55
with:
56
node-version: latest
@@ -90,7 +94,7 @@ jobs:
90
94
- uses: ./
91
95
- run: npm run dist
92
96
- run: rm /usr/local/bin/pkgx
93
- - run: '! pkgx --version'
97
+ - run: "! pkgx --version"
98
- run: git clean -xfd
99
100
- run: pkgx --version
0 commit comments