NeahNew/node_modules/libbase64/.github/workflows/test.yml
2025-05-03 14:17:46 +02:00

22 lines
499 B
YAML

name: Run tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
node: [16.x, 18.x, 20.x, 21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test