There was an error while loading. Please reload this page.
1 parent 4657233 commit a6cd9beCopy full SHA for a6cd9be
1 file changed
.github/actions/node-setup/action.yml
@@ -11,6 +11,16 @@ runs:
11
using: composite
12
steps:
13
14
+ # pnpm's standalone binary is linked against libatomic, which this
15
+ # runner's image doesn't ship (tracked with infra).
16
+ - name: Ensure libatomic is installed
17
+ shell: bash
18
+ run: |
19
+ if ! ldconfig -p | grep -q libatomic.so.1; then
20
+ sudo apt-get update
21
+ sudo apt-get install -y libatomic1
22
+ fi
23
+
24
- name: Setup pnpm
25
uses: pnpm/action-setup@v6
26
0 commit comments