Skip to content

Commit 08c0748

Browse files
committed
wip
1 parent 47c574d commit 08c0748

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/node-s390.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)