Skip to content

Upgrade: Bump actions/checkout from 3 to 4 #216

Upgrade: Bump actions/checkout from 3 to 4

Upgrade: Bump actions/checkout from 3 to 4 #216

Workflow file for this run

name: tests
on: [push, pull_request]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [16,18,20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test