Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

up

up #7

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch: ['x86_64', 'arm64', 'ppc64le', 's390x']
steps:
- uses: actions/checkout@v4
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- uses: addnab/docker-run-action@v3
with:
image: node:20
options: --platform linux/${{ matrix.arch }} -v ${{ github.workspace }}:/workspace -w /workspace
run: |
npm install
npm test