Skip to content

Remove non-ASCII from the d.ta file #47

Remove non-ASCII from the d.ta file

Remove non-ASCII from the d.ta file #47

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: ['22', '24']
steps:
- uses: actions/checkout@v3
- name: Setup Node.js v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm i
- name: Run tests
run: |
node --run ci
env:
CI: true