File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,17 @@ jobs:
12
12
container :
13
13
image : ubuntu:devel
14
14
steps :
15
+ -name : Install Nodejs 21 apt keyrings
16
+ run : mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
17
+
15
18
- name : Update system
16
19
run : apt-get update && apt-get --yes upgrade
17
-
20
+
18
21
- name : Install building tools
19
- run : apt-get install --yes git python3 python3-pip gcc g++ make ninja-build nodejs
22
+ run : apt-get install --yes git python3 python3-pip gcc g++ make ninja-build ca-certificates curl gnupg
20
23
21
24
- name : Clone the repo
22
25
run : git clone https://github.com/devraymondsh/libnode-distributable
23
26
24
27
- name : Run the script
25
- run : node index.js
28
+ run : cd libnode-distributable && node index.js
You can’t perform that action at this time.
0 commit comments