Improve device detection: Archos #262
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UAParser.js CI-Test | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [amd64] | |
node-version: ['22.13', 'lts/*'] | |
include: | |
- arch: ppc64le | |
node-version: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run the test | |
run: | | |
echo "Running on ubuntu-latest-${{ matrix.arch }} with node version set as ${{ matrix.node-version }}" | |
npm ci | |
npx playwright install --with-deps | |
npm test |