Skip to content

chore(ci): test ubuntu-24.04-arm #1640

chore(ci): test ubuntu-24.04-arm

chore(ci): test ubuntu-24.04-arm #1640

Workflow file for this run

name: Tests
on:
push:
branches:
- main
tags:
- '!*'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
jobs:
test:
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
timeout-minutes: 3
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
node: [22]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
#- run: corepack enable npm
- run: npm --version
- run: npm install
- run: npm run lint
- run: npm run test