Skip to content

Merge pull request #189 from xt0rted/dependabot/github_actions/softpr… #296

Merge pull request #189 from xt0rted/dependabot/github_actions/softpr…

Merge pull request #189 from xt0rted/dependabot/github_actions/softpr… #296

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 2
jobs:
test:
name: Test on Node.js ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
- 20
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- name: Check out repository
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test