We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47c574d commit 08c0748Copy full SHA for 08c0748
1 file changed
.github/workflows/node-s390.yml
@@ -0,0 +1,25 @@
1
+name: 'Tests: node.js on s390x'
2
+
3
+on: [pull_request, push]
4
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v5
10
11
+ - uses: uraimo/run-on-arch-action@v3
12
+ with:
13
+ arch: s390x
14
+ distro: ubuntu_latest
15
+ install: |
16
+ apt-get update -q -y
17
+ apt-get install -q -y curl
18
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
19
+ . ~/.nvm/nvm.sh
20
+ nvm install node
21
+ node -v
22
+ npm -v
23
+ run: |
24
+ npm install
25
+ npm run tests-only
0 commit comments