Skip to content

Update .gitattributes #25

Update .gitattributes

Update .gitattributes #25

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Test:
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [22.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
if: ${{ matrix.os != 'windows-latest' }}