Skip to content

Refactor to TypeScript #1

Refactor to TypeScript

Refactor to TypeScript #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
name: tests
strategy:
matrix:
arch: [ amd64 ]
#arch: [ amd64, arm64v8, arm32v7 ]
node: [ 20, 22, 24 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '15'
- uses: docker/setup-qemu-action@v1
- name: Install dependencies
run: npm install
- name: Run tests
run: node_modules/.bin/archibald -p -a ${{ matrix.arch }} -n ${{ matrix.node }} .