Skip to content

CI: update node versions #58

CI: update node versions

CI: update node versions #58

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }} ${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [ 18, 20, 22 ]
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: yarn test